Operating System - HP-UX
1837892 Members
3729 Online
110122 Solutions
New Discussion

Integrity guest can't ping anything but itself

 
donald evans
Occasional Contributor

Integrity guest can't ping anything but itself

I created a guest off of a Integrity server. The hosts can't ping the new guest - I can only get to the guest through the console. On the guest I can't ping the host or gateway. The host and guest are on the same subnet.
Routing tables
Destination Gateway Flags Refs Interface Pmtu
127.0.0.1 127.0.0.1 UH 0 lo0 4136
10.1.1.18 10.1.1.18 UH 0 lan5981:1 4136
10.11.1.251 10.11.1.251 UH 0 lan5986 4136
10.1.3.251 10.1.3.251 UH 0 lan5982 4136
10.1.1.251 10.1.1.251 UH 0 lan5981 4136
10.1.1.0 10.1.1.251 U 3 lan5981 1500
10.1.1.0 10.1.1.18 U 3 lan5981:1 1500
10.11.1.0 10.11.1.251 U 2 lan5986 1500
10.1.3.0 10.1.3.251 U 2 lan5982 1500
127.0.0.0 127.0.0.1 U 0 lo0 0
default 10.11.1.1 UG 0 lan5986 0
4 REPLIES 4
donald evans
Occasional Contributor

Re: Integrity guest can't ping anything but itself

host IP is 10.11.1.251
Guest 10.11.1.253
Gateway 10.11.1.1

Would the auto port aggregation cause a problem if not setup correct.
Jim Keeble
Trusted Contributor

Re: Integrity guest can't ping anything but itself

I don't think there's enough data here.

What do the routing tables on the guest look like ? Also, the vmswitch config ? I can't remember the exact syntax, it's something like "hpvmnet status " to look at it.

donald evans
Occasional Contributor

Re: Integrity guest can't ping anything but itself

Here is the route table on the guest

suthpux8:/
#netstat -rn
Routing tables
Destination Gateway Flags Refs Interface Pmtu
127.0.0.1 127.0.0.1 UH 0 lo0 4136
10.11.1.253 10.11.1.253 UH 0 lan0 4136
10.11.1.0 10.11.1.253 U 2 lan0 1500
127.0.0.0 127.0.0.1 U 0 lo0 0
default 10.11.1.1 UG 0 lan0 0


#hpvmnet
Name Number State Mode NamePPA MAC Address IP Address
======== ====== ======= ========= ======== ============== ===============
localnet 1 Up Shared N/A N/A
vsHPVM 7 Up Shared lan900 0x001a4b066424 10.11.1.254


#hpvmstatus -P suthpux8
[Virtual Machine Details]
Virtual Machine Name VM # OS Type State
==================== ===== ======= ========
suthpux8 24 HPUX On (OS)

[Authorized Administrators]
Oper Groups:
Admin Groups:
Oper Users:
Admin Users:

[Virtual CPU Details]
#vCPUs Entitlement Maximum
====== =========== =======
2 20.0% 100.0%

[Memory Details]
Total Reserved
Memory Memory
======= ========
8 GB 64 MB

[Storage Interface Details]
Guest Physical
Device Adaptor Bus Dev Ftn Tgt Lun Storage Device
======= ========== === === === === === ========= =========================
disk scsi 0 0 0 0 0 lv /dev/vgVM/rlvol3
disk scsi 0 0 0 1 0 lv /dev/vgOMNI/rlvol1
tape scsi 0 0 0 2 0 attach /dev/rscsi/c1t2d0

[Network Interface Details]
Interface Adaptor Name/Num PortNum Bus Dev Ftn Mac Address
========= ========== ========== ======= === === === =================
vswitch lan vsHPVM 5 0 1 0 2a-f3-9c-5c-28-da

[Misc Interface Details]
Guest Physical
Device Adaptor Bus Dev Ftn Tgt Lun Storage Device
======= ========== === === === === === ========= =========================
serial com1 tty console
suthpvm1:TESTLAB:/
#
Jim Keeble
Trusted Contributor

Re: Integrity guest can't ping anything but itself

OK. Your host is utilizing "tagged vlans". I can tell because the interface PPA's are in the range of 5000+. The packets sent and received by the host have a special "Vlan ID" that tells the switch which vlan they belong to. Lan5981, 5982, and 5986 all have different vlan ids

Your guest doesn't have these tags, so the host never sees the guest's packets, and vice versa. You would have to set up a vlan on the guest that uses the same vlan id as lan5986 on the host, since they both seem to be on the same subnet, 10.11.1.x

I'm not sure if virtual machine supports vlans or not. If not, you'll have to set up an untagged vlan (like lan0) on the host for the shared network with the guests.

I'm sorry to be vague in my answer, I know just enough on vlan and virtual machine to be dangerous. Hope this helps, or that someone else can be more specific.