Slackware This Forum is for the discussion of Slackware Linux.
|
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
02-14-2013, 01:06 AM
|
#1
|
|
Senior Member
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 2,487
Rep:
|
Two machines LAN configuration in Slackware plus internet.
Hi:
The problem: A modem-router, a switch and two computers. The switch is connected to the modem-router and the two computers, and I want the computers to communicate between them and one of them, say computer A, to have access to internet (the modem-router is fed by the ISP). Let the other be computer B.
I've been reading The Linux Network Administrator's Guide, 2nd edition and /usr/doc/Linux-HOWTO/Linux+IPv6-HOWTO, but still can't figure out how to solve this problem.
As I see it, its a case of assigning one IP to A and another to B. This would do for address resolution. And could be done with ifconfig, though I do not know how (yes, I studies the man page).
What I did was to just forget about the modem-router (Motorola Surfboard SB5101i) and join the computers by means of the switch. I did 'ifconfig eth0 xxx.xxx.1.1' and 'ifconfig eth0 xxx.xxx.1.2' on B, where I chose xxx.xxx arbitrarily. Then, I verified with ping. This I did trying to simplify the problem, only to test. However, I was not able to login into the other machine. As you can see, my knowledge on LAN is insufficient, so I would not be entitled to ask for help here. If you think otherwise, please let me know.
net-tools 1.60
ifconfig 1.42 (2001-04-13)
Linux 3.2.29
Slackware 14.0
|
|
|
|
02-14-2013, 01:31 AM
|
#2
|
|
Member
Registered: Nov 2006
Location: Europe,Latvia,Riga
Distribution: slackware,slax, exMandriva
Posts: 191
Rep:
|
Quote:
Originally Posted by stf92
Hi:
What I did was to just forget about the modem-router (Motorola Surfboard SB5101i) and join the computers by means of the switch. I did 'ifconfig eth0 xxx.xxx.1.1' and 'ifconfig eth0 xxx.xxx.1.2' on B, where I chose xxx.xxx arbitrarily. Then, I verified with ping. This I did trying to simplify the problem, only to test. However, I was not able to login into the other machine. As you can see, my knowledge on LAN is insufficient, so I would not be entitled to ask for help here. If you think otherwise, please let me know.
net-tools 1.60
ifconfig 1.42 (2001-04-13)
Linux 3.2.29
Slackware 14.0
|
it's more easy to designate address via /etc/rc/d/rc.inet1.conf
it contains some like:
# Config information for eth0:
IPADDR[0]="192.168.3.55"
NETMASK[0]="255.255.255.0"
USE_DHCP[0]=""
DHCP_HOSTNAME[0]=""
# Config information for eth1:
IPADDR[1]=""
NETMASK[1]=""
USE_DHCP[1]=""
DHCP_HOSTNAME[1]=""
# Config information for eth2:
IPADDR[2]=""
NETMASK[2]=""
USE_DHCP[2]=""
DHCP_HOSTNAME[2]=""
# Config information for eth3:
IPADDR[3]=""
NETMASK[3]=""
USE_DHCP[3]=""
DHCP_HOSTNAME[3]=""
# Default gateway IP address:
GATEWAY="192.168.3.254"
edit it with your own settings, save, and restart computer ( or do command: /etc/rc.d/rc.inet1 restart ). if you do not want setting done via manual, as i remeber commands is like ifconfig eth0 192.168.1.2 mask 255.255.255.0
then do add gateway: route add default gw 192.168.1.1
then it be must works. both computer must be in one subnet ( if netmask is 255.255.255.0 ( "c" class netmask, or /24), then ip adress range for both is like a 192.168.1.x, where x= 1 to 254 ) in example, give A computer 192.168.1.1, and B one - 192.168.1.2. netmask on both is 255.255.255.0 after you do that, you must can ping each other from both machines, if it be connected physically with ethernet cable ( crossed, or patch cables connected to ethernet switch).
also you do not want to hide your addresses, if it from 192.168.x.x range - it is "grey" address range for small private networks - it not routed to internet and not showing in global internet. when you connecting to inet, you must have a "real address", some like, for example, 60.50.104.45...
PS. why IPv6? do your cable provider use IPv6 ? :-O
Last edited by WiseDraco; 02-14-2013 at 01:46 AM.
|
|
|
|
02-14-2013, 02:25 AM
|
#3
|
|
LQ Newbie
Registered: Dec 2012
Location: California
Distribution: Slackware 14.0
Posts: 29
Rep: 
|
Quote:
|
PS. why IPv6? do your cable provider use IPv6 ? :-O
|
Hello stf92,
Wise Draco asks why you are reading a How-To about Linux+IPv6?
If you see in Chapter 2 (2.1) it explains how
IPv6 differs from IPv4.
The addresses you have set for your two
computers are 32-bit IPv4.
|
|
|
1 members found this post helpful.
|
02-14-2013, 02:33 AM
|
#4
|
|
Senior Member
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 2,487
Original Poster
Rep:
|
IPv6 must be an error of mine. Please forget about IPv6. Where do I put that "real address"? With 'ifconfig eth0 xxx.xxx.xxx.xxx'?
|
|
|
|
02-14-2013, 02:38 AM
|
#5
|
|
Senior Member
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 2,487
Original Poster
Rep:
|
Quote:
Originally Posted by Poucket
Hello stf92,
Wise Draco asks why you are reading a How-To about Linux+IPv6?
If you see in Chapter 2 (2.1) it explains how
IPv6 differs from IPv4.
The addresses you have set for your two
computers are 32-bit IPv4.
|
Oh yes. Four 8-bit numbers, that is, binary bbbbbbbbbb.bbbbbbbb.bbbbbbbb.bbbbbbbb or up to 255.255.255.255. You are right. And the computer when booting has trouble with 'IPv6 RAS'. So that was the trouble! But then it takes another course of action and seems to resolve. Otherwise I would not be speaking with you now. Thanks.
EDIT: by the way, when I had just bought the switch, I connected it to the modem and to this computer while the computer was running. And it, the computer, went on running as if nothing had happened. Perfect, said I, this works! Of course the other computer was not connected yet to the switch. However, I could NEVER again repeat these conditions! I wonder how I did it.
But this fact, that I continued having internet, does not say the modem is really a modem-router?
Last edited by stf92; 02-14-2013 at 02:43 AM.
|
|
|
|
02-14-2013, 03:05 AM
|
#6
|
|
Member
Registered: Nov 2006
Location: Europe,Latvia,Riga
Distribution: slackware,slax, exMandriva
Posts: 191
Rep:
|
switch is hardware mm...hard to say in english - but switch is like a electric spreader, splitter - it looks up transparent for network. router \ firewall is a bit different things -it in you must configure it, and it works with packet filtration, addr4ess translation and another complex things. do you done configure ip address on both machines, as i describe? after that, it pings each other?
|
|
|
|
02-14-2013, 03:07 AM
|
#7
|
|
LQ Newbie
Registered: Dec 2012
Location: California
Distribution: Slackware 14.0
Posts: 29
Rep: 
|
Quote:
Originally Posted by stf92
But this fact, that I continued having internet, does not say the modem is really a modem-router?
|
It does not. Your Surfboard sb5101 should be a modem.
|
|
|
1 members found this post helpful.
|
02-14-2013, 03:10 AM
|
#8
|
|
Senior Member
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 2,487
Original Poster
Rep:
|
Yes, the five jacks are connected in parallel, I understand. There are no passive or active elements between the jacks.
pLease, give 5 more minutes.
|
|
|
|
02-14-2013, 03:15 AM
|
#9
|
|
Senior Member
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 2,487
Original Poster
Rep:
|
Quote:
Originally Posted by Poucket
It does not. Your Surfboard sb5101 should be a modem.
|
Then all my posting here in LQ has been in vain! What a pity! It was TobiSGD who told it was a router too.
|
|
|
|
02-14-2013, 03:24 AM
|
#10
|
|
Senior Member
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 2,487
Original Poster
Rep:
|
ifconf eth0 xxxxxxx.1 mask 255.255.255.0 gave 'mask: Host name lookup failure'. I have the same hostnames on both machines.
|
|
|
|
02-14-2013, 03:34 AM
|
#11
|
|
Member
Registered: Nov 2006
Location: Europe,Latvia,Riga
Distribution: slackware,slax, exMandriva
Posts: 191
Rep:
|
Quote:
Originally Posted by stf92
ifconf eth0 xxxxxxx.1 mask 255.255.255.0 gave 'mask: Host name lookup failure'. I have the same hostnames on both machines.
|
sorry, there have been "netmask" - i configured it many time ago. correct syntax is
ifconfig eth0 xxx.xxx.xxx.xxx netmask 255.255.255.0
on one machine in xxx.xxx.xxx.xxx do a 192.168.0.1, on another - 192.168.0.2
then make sure both of it is be connected to switch, and switch is turn on, and then make a ping 192.168.0.2 from first machine.
|
|
|
|
02-14-2013, 03:48 AM
|
#12
|
|
LQ Newbie
Registered: Dec 2012
Location: California
Distribution: Slackware 14.0
Posts: 29
Rep: 
|
Quote:
Originally Posted by stf92
It was TobiSGD who told it was a router too.
|
It is complicated. There might be some way for you to use the modem
and switch as was discussed yesterday, but it would better IMHO
to follow the recommendation here.
|
|
|
|
02-14-2013, 03:58 AM
|
#13
|
|
Senior Member
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 2,487
Original Poster
Rep:
|
OK. Both ifconfig done in each machine plus route command on A. After that, I pinged from each machine with no problem. What next?
|
|
|
|
02-14-2013, 04:08 AM
|
#14
|
|
Member
Registered: Nov 2006
Location: Europe,Latvia,Riga
Distribution: slackware,slax, exMandriva
Posts: 191
Rep:
|
Quote:
Originally Posted by stf92
OK. Both ifconfig done in each machine plus route command on A. After that, I pinged from each machine with no problem. What next?
|
what you want next?  i think, it is goal, who you want - network connection between these two machines.
if you need also internet on one of your machines in the same time ( says, on machine A), then
go on /etc/rc.d/rc.local on that machine and write in rc.local new string with /sbin/ifconfig eth0:0 192.168.0.1 netmask 255.255.255.0
in machine B on /etc/rc.d/rc.inet1.conf writes ip 192.168.0.2 and gw 192.168.0.1
in that example means, a internet ( with modem and so) is always connect to machine A.
after reboot both machines you must going to internet from machine A, and ping from A to B, ant vice versa...
it is any another things, who you want? 
|
|
|
1 members found this post helpful.
|
02-14-2013, 04:08 AM
|
#15
|
|
LQ Newbie
Registered: Dec 2012
Location: California
Distribution: Slackware 14.0
Posts: 29
Rep: 
|
What was your gateway for the route command? Or were you setting a route to B?
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 01:21 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|