- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Ethernet Card
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
12-01-2003 01:32 AM
12-01-2003 01:32 AM
In Redhat 9.0 Network device control. My ethernet cart, i go to the "route" tab and I'm wondering if I need to add a Destination Network? Whatever that means.
I am trying to establish a connection to our network were on with a server i'm building which has it's own static IP address and a lan line to our network. Can anybody tell me if I need to add a Destination Network, Prefix (netmask) and a Gateway at this tab in Network Device Control. Thanks!
Kyle
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 01:41 AM
12-01-2003 01:41 AM
SolutionI don't know specifically about Red Hat and it's funky network GUI but I would guess you do need to add a destination network.
Basically, for routing, you need to tell the system where to route packets for various networks.
So, Destination means "packets that are going to be sent here" and Gateway means "the router that knows how to send things to the destination"
You don't need a route for each IP address though, just for the network so if your ip address was 10.80.132.1 and you wanted to talk to things on the 192.9.30.XXX network, you'd find yourself a router that was connected to both (or at least knew how to get between the two) and the IP address of this was 10.80.132.11 you would need to set up something like..
Destination would be 192.9.30.0 and gateway would be 10.80.132.11
The netmask will almost certainly be whatever the netmask is for your machine.
Hopw this helps a bit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 02:12 AM
12-01-2003 02:12 AM
Re: Ethernet Card
IE. i want /usr/local/catalina directory to point (->) to another directory.. Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 02:20 AM
12-01-2003 02:20 AM
Re: Ethernet Card
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 02:21 AM
12-01-2003 02:21 AM
Re: Ethernet Card
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 04:43 AM
12-01-2003 04:43 AM
Re: Ethernet Card
You probably know this but just a pointer to the "fancy gui/tui network tools under RedHat Linux 9.0)
From X from menu --> system tools --> Red Hat network
From shell
# redhat-config-network
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 02:06 PM
12-01-2003 02:06 PM
Re: Ethernet Card
in a simple case you will have two routes. One for the network that your system is part of. This is essentialy your own network interface.
Addtionally you should have a "default" gateway (i.e. router) that allows you to reach all the other networks, i.e. the routes for my laptop here at home look like this:
10.0.0.0 0.0.0.0 255.0.0.0 eth0
default 10.0.0.253 - -
I use a 10.x.x.x network at home (no I do not have that many systems ;-) that the laptop is directly connected to. All the rest of the world is accessible via my router (10.0.0.253), which is the default gateway.
Details on the router and network mask should be available from your networking group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 01:00 AM
12-02-2003 01:00 AM
Re: Ethernet Card
I just looked at another server running 9.0 right next to me. From that server i'm able to ftp to redhat just fine.
From the server i'm building it says "network host unreachable" when i try to ftp to anything, or ping.
So I looked at the settings of both, the one that works and the one i'm building giving me problems. All the settings are the exact same in the Network Configuration except of course the different Static IP's. Could there be another reason I can't connect to the outside world or even another server right next to me on the same network!? Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 02:47 AM
12-02-2003 02:47 AM
Re: Ethernet Card
Perhaps you forgot to put theses node name in the /etc/hosts file
-----------< example /etc/hosts >------------
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
10.10.10.19 nodea.ourdom nodea
10.10.10.20 nodeb.ourdom nodeb
-------------< end/etc/hosts >--------------
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 04:24 AM
12-02-2003 04:24 AM
Re: Ethernet Card
Have you started IP (inetd or xinetd)?
Are you able to talk to the loopback device
ping 127.0.0.1 or telnet 127.0.0.1?
Greetings, Martin