- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Networking
- >
- Re: Heartbeat gateway
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-06-2003 06:32 PM
07-06-2003 06:32 PM
Heartbeat gateway
I have 2 W2k AdvSvr boxes which are running Cluster Svc.
Is it the recommended practice to leave the default
gateway of the heartbeat NIC as blank?
TIA & Rgds,
Shahril
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 10:12 AM
07-07-2003 10:12 AM
Re: Heartbeat gateway
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 06:13 PM
07-07-2003 06:13 PM
Re: Heartbeat gateway
Thanks for replying.
What do you mean by static routes? What if I just leave the entry in the TCP/IP properties blank?
Rgds,
Shahril
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2003 04:40 AM
07-08-2003 04:40 AM
Re: Heartbeat gateway
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2003 06:07 AM
07-08-2003 06:07 AM
Re: Heartbeat gateway
Some systems are connected both to the internet via one network card and to a company wide network via the other. The company network could have more than one subnet. In order to tell the computer about the other subnets you would have to add static routes. This is done from a command (DOS) prompt with the command "route add." For example, suppose you had two NICs (Network Interface Cards) on your computer:
192.168.1.2 mask 255.255.255.0 with default gateway of 192.168.1.254 and 10.1.1.2 mask 255.255.255.0.
Say there was another network 10.1.2.0 255.255.255.0 which could be reached by going first to the router at 10.1.1.254 then you would need to add the static route:
route add 10.1.1.0 mask 255.255.255.0 10.1.1.254 -p
The -p tells the PC to store the route in the registry so it will still be there after a reboot.
You can look at your routing table with the "route print" or "netstat -rn" or "netstat -r" commands.
Ron