> -----Original Message----- > From: IBM Mainframe Discussion List > [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Stitt > Sent: Tuesday, July 25, 2006 3:48 PM > To: [email protected] > Subject: I love TCPIP (not!) > > > Having fun with TCPIP. Got some systems which use the > GATEWAY statements. > I want to convert them to ROUTE statements. I also have an > OSA port and a > HiperSockets port defined. > > I want the traffic between the LPARS to use the HiperSockets, > and everthing > else to use the OSA port. Default route to use the OSA port. > > OSA is 10.x.x.x for all traffic. HiperSocket is 192.10.x.x > for traffic. > Each LPAR is 192.10.1.xxx. > > Would someone care to help get this stuff working the way I want? > > Thanks....
First, change to the BEGINROUTES/ENDROUTES. It is significantly easier to maintain BEGINROUTES ROUTE 10.0.0.0/8 osa MTU nnn ROUTE 192.10.0.0/16 hipersocket MTU nnn ROUTE DEFAULT = osa MTU nnn ENDROUTES The will route all the 10.x.x.x addresses out the osa. The second will route all the 192.10.x.x addresses out the hipersocket. It will then route all other addresses out the osa. Yes, technically, the first ROUTE of the 10.x.x.x is unnecessary because the DEFAULT will catch it. But I like to have it in there anyway. Note that you can also have: BEGINROUTES ROUTE 10.0.0.0/8 osa1 MTU nnn ROUTE 10.0.0.0/8 osa2 MTU nnn ... ROUTE DEFAULT = osa1 MTU nnn ROUTE DEFAULT = osa2 MTU nnn ENDROUTES -- John McKown Senior Systems Programmer HealthMarkets Keeping the Promise of Affordable Coverage Administrative Services Group Information Technology This message (including any attachments) contains confidential information intended for a specific individual and purpose, and its content is protected by law. If you are not the intended recipient, you should delete this message and are hereby notified that any disclosure, copying, or distribution of this transmission, or taking any action based on it, is strictly prohibited. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

