[CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread ML
Hi All, Can anyone provide advice on how to bring up networking in Single User Mode? I need to specify an IP, mask, gateway and bring up the adaptor so I can ssh into another machine to transfer files to it. -ML ___ CentOS mailing list

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread nate
ML wrote: Hi All, Can anyone provide advice on how to bring up networking in Single User Mode? I need to specify an IP, mask, gateway and bring up the adaptor so I can ssh into another machine to transfer files to it. ifconfig ethX IP_ADDRESS netmask NETMASK route add default gw

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread nate
ML wrote: Hi All, Can anyone provide advice on how to bring up networking in Single User Mode? I need to specify an IP, mask, gateway and bring up the adaptor so I can ssh into another machine to transfer files to it. You could also probably do /etc/init.d/network start my first post

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread A. Kirillov
Can anyone provide advice on how to bring up networking in Single User Mode? I need to specify an IP, mask, gateway and bring up the adaptor so I can ssh into another machine to transfer files to it. # service network start ? ___ CentOS

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread ML
Nate, ifconfig ethX IP_ADDRESS netmask NETMASK route add default gw IP_OF_GATEWAY OK, so I was correct, I am doing ifconfig eth0 172.16.254.80 netmask 255.255.255.240 route add default gw 172.16.254.1 I am getting Network is unreachable. -Jason

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread Timo Schoeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 thus ML spake: Nate, ifconfig ethX IP_ADDRESS netmask NETMASK route add default gw IP_OF_GATEWAY OK, so I was correct, I am doing ifconfig eth0 172.16.254.80 netmask 255.255.255.240 route add default gw 172.16.254.1 I am getting

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread ML
Hi Timo, Try 'ifconfig eth0 172.16.254.80 netmask 255.255.255.240 up' or, after you already issued those commands, a simple 'ifconfig eth0 up'. Yup did that then: route ass default gw 172.16.254.1 I get: Network is unreachable I can ping 172.16.254.1 from my Mac though. -Jason

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread Eduardo Grosclaude
On Wed, Oct 7, 2009 at 3:28 PM, ML mailingli...@mailnewsrss.com wrote: Nate, ifconfig ethX IP_ADDRESS netmask NETMASK route add default gw IP_OF_GATEWAY OK, so I was correct, I am doing ifconfig eth0 172.16.254.80 netmask 255.255.255.240 route add default gw 172.16.254.1 I am getting

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread Christoph Maser
Am Mittwoch, den 07.10.2009, 20:28 +0200 schrieb ML: Nate, ifconfig ethX IP_ADDRESS netmask NETMASK route add default gw IP_OF_GATEWAY OK, so I was correct, I am doing ifconfig eth0 172.16.254.80 netmask 255.255.255.240 route add default gw 172.16.254.1 I am getting Network is

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread ML
ifconfig eth0 172.16.254.80 netmask 255.255.255.240 route add default gw 172.16.254.1 I am getting Network is unreachable. ipcalc -nbp 172.16.254.80 255.255.255.240 PREFIX=28 BROADCAST=172.16.254.95 NETWORK=172.16.254.80 so 172.16.254.1 is not in your network and thus not reachable

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread m . roth
-BEGIN PGP SIGNED MESSAGE- thus ML spake: Nate, ifconfig ethX IP_ADDRESS netmask NETMASK route add default gw IP_OF_GATEWAY OK, so I was correct, I am doing ifconfig eth0 172.16.254.80 netmask 255.255.255.240 route add default gw 172.16.254.1 I am getting Network is

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread Preston Connors
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jason, 172.16.254.1 is not in the same subnet as 172.16.254.80 when you use a netmask of 255.255.255.240. You would need to use a larger netmask. 255.255.255.128 would be the smallest netmask you could use to enable you to locally reach 172.16.254.1.

Re: [CentOS] Bring up Networking in Single User Mode

2009-10-07 Thread R.C. Prince
To: CentOS mailing list ReplyTo: CentOS mailing list Subject: Re: [CentOS] Bring up Networking in Single User Mode Sent: Oct 7, 2009 1:35 PM On Wed, Oct 7, 2009 at 3:28 PM, ML mailingli...@mailnewsrss.com wrote: Nate, ifconfig ethX IP_ADDRESS netmask NETMASK route add default gw IP_OF_GATEWAY OK, so