Originally posted by: Casey_B
So,
I think that this problem doesn't relate so much to LPAR/VIO, but rather the routing setup looks a bit funny to me.
I don't think having en1 up, but not configured with an IP is a problem. It certainly can be confusing...But probably not
a problem.
Now, before talking about your netstat -r, one comment...The group doesn't know what the value of "VIO1" is, so the netstat information
isn't 100% clear.
Let me make a guess, though....VIO1 appears to be your ip address for en0 == 192.168.1.142
(Reason I say that, is there are some network routes for 192.168.1/24 pointing to VIO1, these would
have been automatically configured by AIX when the address was placed on the interface)
Ok, to continue...
Now you have a default route that points to each of the following addresses:
default 192.168.1.40 UG 0 0 en0 - - =
default VIO1 UG 0 0 en0 - - =
default 192.168.1.105 UG 0 0 en0 - - =
default 192.168.1.0 UG 0 0 en0 - - =
default 209.183.214.17 UG 0 0 en0 - - =
default 192.168.1.1 UG 0 0 en0 - -
AIX will round robin outgoing connections through all of these default routes.
One of the default routes points to VIO1, which is guess is local to the machine. Does that work? In most cases it shouldn't...
One of the default routes references 209*, which shouldn't be reachable from your ifconfig output.
(This may work if you have the 209 directly connected, and specified the route correctly)
What about all of the other ones...including 192.168.1.0....That seems wrong... .0 is a network
address, not a host address.
So, I believe that AIX will round robin to all of these dubious routes for outgoing connections,
causing drops on bad routes, and success on good routes....
To check what might be happening try the following command:
route -n get 10.100.100.100
(The address doesn't need to be a real machine, I chose 10.100.100.100 because it should be routed through the default gateway)
Run it several times, and see that the "gateway" is changing on each of the calls.
There is something else that seems out of the ordinary, the route to 0.0.0/24 But, seeing as this machine might
be a VIO server...I just don't know if that is normal. I know more about AIX than anything with VIO...Certainly
does seem like an odd route, though.
So, my advice is to clean up your default routes, and see if that helps.
I can't tell you which ones are correct for your environment...
Hope this helps,
Casey
#AIX-Forum