- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- K200 on two different networks
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-2003 01:20 AM
07-16-2003 01:20 AM
K200 on two different networks
We have a K200, HPUX 11i with two network cards, a 10Mbit internal card and a 100Mbit expansion card. We use the 100Mbit card to connect to our lan, the 110Mibit is unused.
We have a connection to IBM for management of a hosted server. We have an IBM router here. I want to connect the 10Mbit card to the IBM router so that we can telnet, ftp etc. from the K200 to the hosted server. I've tried setting this up in SAM with no success.
We're Informix programmers who dable in HPUX admin and have managed to confuse ourselves on this one so if anyone could explain or point to the correct RTFM I would be greatful.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2003 01:26 AM
07-16-2003 01:26 AM
Re: K200 on two different networks
ifconfig lan1 x.x.x.x netmask y.y.y.y
x.x.x.x is a IP address in the IBM router network. Edit the /etc/rc.config.d/netconf to make these changes permanant. Now from this system you should be able to connect to the IBM network ( I am assuming that these are on the different networks). If required you can add a static route to this network.
Regards,
Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2003 01:44 AM
07-16-2003 01:44 AM
Re: K200 on two different networks
1. an IP address that is allowed an will work on the IBM router/network.
2. the subnetmask used on the IBM router/network.
3. the IP of the IBM router (for routing).
Whomever looks after your IBM router/network should be able to give you this. Once you have it all you will need to add some entries to /etc/rc.config.d/netconf
INTERFACE_NAME[1]=
IP_ADDRESS[1]=
SUBNET_MASK[1]=
BROADCAST_ADDRESS[1]=""
LANCONFIG_ARGS[1]="ether"
DHCP_ENABLE[1]=0
Where interface name is the lan id of the lancard (eg. lan1) you will use to connect to the IBM router. IP_ADDRESS is the ip to use and same for SUBNET_MASK. Leave the other fields as above. Now you will need some more for routing;
ROUTE_DESTINATION[1]=
ROUTE_MASK[1]=""
ROUTE_GATEWAY[1]=
ROUTE_COUNT[1]=1
ROUTE_ARGS[1]=""
Where DESTINATION is say the net part of the IP address, eg; net X.Y
and GATEWAY is the IP of the IBM router. ROUTE_COUNT should be 1.
Then when you reboot or run /sbin/init.d/network start it should activate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2003 05:54 AM
07-16-2003 05:54 AM
Re: K200 on two different networks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2003 01:01 AM
07-24-2003 01:01 AM
Re: K200 on two different networks
My apologies for not assigning points to the replies to my post here. I have tried twice now and for some reason they points are not being accepted. For info, first reply os 5 points ,2nd reply is 10 points.
Thanks.