- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Red Hat ES with isolated network and hub.
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
06-16-2004 09:06 AM
06-16-2004 09:06 AM
I needed to set up a Red Hat server 192.168.2.1/255.255.255.0 on an isolated network. 192.168.2.0
I will have 10 pc's connected to it thru a hub.
Back to networking 101...
I have the crossover switch on for the port on the server to the hub. Light is on.
I then hooked up the test pc and gave it an address of 192.168.2.11/255.255.255.0
I am assuming that I dont need a default gateway, because it is on the same subnet. And no traffic should be going out anyway.
The files that I changed were...
[root@backgate sysconfig]$ more network
NETWORKING=yes
HOSTNAME=backgate
[root@backgate network-scripts]# more ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
BROADCAST=192.168.2.255
IPADDR=192.168.2.1
NETMASK=255.255.255.0
NETWORK=192.168.2.0
ONBOOT=yes
The /etc/hosts file remained the same since the only entry was ...
[root@lnxgate etc]# more hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
Did a restarted the server and when I try to ping 192.168.2.11
I get
Destination Host Unreachable
What am I missing?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2004 09:39 AM
06-16-2004 09:39 AM
Re: Red Hat ES with isolated network and hub.
I don't think a crossover cable is required unless you are going nic to nic without a hub.
bub
Give that a shot and report back.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2004 10:58 AM
06-16-2004 10:58 AM
Solutionmii-tool eth0
netstat -nr
'mii-tool' should report whether it thinks there's a link or not. The 'netstat -nr' is to show the routing table, to ensure that the correct subnet gets bound to the interface.
Looking at the config you've shown us, it should be (unless you changed these files and didn't either restart networking or the entire machine at least).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2004 02:08 PM
06-16-2004 02:08 PM
Re: Red Hat ES with isolated network and hub.
for starters, avoid the cross over port on the hub, this is meant for cascading hubs etc.
Connect your server with a regular cable to a
normal port on the hub. Try again ;-)
Also I do have my routes for a similar config setup like this
10.0.0.0 0.0.0.0 255.0.0.0 eth0
default 10.0.0.253 - -
Only difference is that 10.0.0.253 is my router to the internet. Note the route for my local network.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 12:25 AM
06-17-2004 12:25 AM
Re: Red Hat ES with isolated network and hub.
Took it all apart brought it back into the lab, and low and behold it works, with and with out the cross over. With and with out a gateway.
Thanks for all the help.
I would like clarifications between the different ping replys,
destination unreachable, and ping timed out...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 06:08 AM
06-17-2004 06:08 AM
Re: Red Hat ES with isolated network and hub.
In answer to your last question.....
Typically, network unreachable means that the machine is clueless on how to get to the remote machine. Generally happens with routing issues. However, since you are on the same network, I'm clueless on the why it would say that. The only feeble explanation that I can muster is perhaps you changed the file(s) and didn't restart the network services. Often, network changes do not take effect until one restarts xinetd or re-boots the machine. This could explain why you took everything apart and put it back together and it worked.
ping timed out means that the machine "thinks" it knows how to get to the remote destination, but the remote did not reply.