- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- network issues with linux
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2009 08:27 AM
07-16-2009 08:27 AM
network issues with linux
when i try to connect to the network or do a ping, it tells me the network is unreachable.
have a static ip of 192.168.1.239. gw of 192.168.1.99. network is working, cable is good and syncs with cisco switch.
i read where is is how the kernal enumerates the nic device, but it did not tell me how to fix the issue.
help please!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2009 10:59 AM
07-16-2009 10:59 AM
Re: network issues with linux
probably you have 2 nic on board and you configured a NIC that isn't connected to the switch.
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2009 11:12 AM
07-16-2009 11:12 AM
Re: network issues with linux
thanks.
--rudy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2009 11:19 AM
07-16-2009 11:19 AM
Re: network issues with linux
ok could you please send a network configuration ???
content of ifcfg-eth0
ifconfig eth0
netstat -nr
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2009 12:04 PM
07-16-2009 12:04 PM
Re: network issues with linux
when i look at my system settings in the cmos, it shows me the mac addresses of the interfaces.
when i compare these macs to the eth0,1,2,3 they are switched aroung.
nic1 in cmos mac is actually eth3 in centos 5.3
so, how do i get centos to match these up?
i am hopeful this takes care of the issue, with your help. thanks...
--rudy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2009 12:10 PM
07-16-2009 12:10 PM
Re: network issues with linux
for i in 1 2 3; do ifconfig eth$i down; done
put it to the shell or
simple ifconfig ethx down ( x=1 2 3 )
if you are shure that the eth0 is connected with the switch them
IP : 192.168.1.239
netmask : ???
gw : 192.168.1.99
#----------------------------------------
ifconfig eth0 down
ifconfig eth0 IP netmask up
route add default gw IP_GW
them try tu ping if the netwrok is working.
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2009 12:44 PM
07-16-2009 12:44 PM
Re: network issues with linux
i went into the network config and mapped the nic mac address to match the interface,
rebooted the system and i can now gain access.
thank you for all your help..
--rudy