|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] Interesting networking problem (network is unreachable)
and the /etc/network/interfaces file in the guest domain says
auto lo eth0
iface lo inet loopback
# The primary network interface
#allow-hotplug eth0
iface eth0 inet static
address 83.143.83.193
netmask 255.255.255.248
gateway 83.143.83.121
# dns-* options are implemented by the resolvconf package, if
installed
dns-nameservers 193.67.79.39
dns-search nidelven-it.no
and the output from route on the guest domain is
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use
Iface
83.143.83.192 * 255.255.255.248 U 0 0 0 eth0
when I try to ping and outside host from the guest domain,
the message "connect: Network is unreachable" appears.
Any ideas what's wrong?
Yes, IP routing table on guest doesn't have a default route. Try
adding a default route like this in domU:
route add default gw 83.143.83.121
(I don't know why it's not being picked up from
/etc/network/interfaces. Probably, because you're defining IP in xen
domain configuration file and xen is controlling it.)
--
Manu Garg
http://www.manugarg.com
"Journey is the destination of the life."
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|