Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I've got some strange effects in my network behavior after updating to 12.04 - before all worked fine:

My network is segmented with my desktops residing in 192.168.1.0/28. My DSL-router lives in a segment 192.168.1.64/30 and my internal router listens to 192.168.1.1 and 192.168.1.65.

My upgraded desktop receives its ip address as 192.168.1.8 and its default gateway off course to 192.168.1.1 all via DHCP. All ip addresses can be accessed within the network 192.168.1.0, but if I ping 192.168.1.66 only the first icmp packte comes back correctly, all subsequent packages return with "Desination Host Unreachable" - looks quite weird to me.

The dhcpd.conf entry looks like that:

subnet 192.168.1.0 netmask 255.255.255.240 {

option definitions common to all supported networks...

option domain-name "kesenheimer.org"; option domain-name-servers 81.173.194.68,194.8.194.60; option routers 192.168.1.1; range 192.168.1.3 192.168.1.14;
}

host beate { # Ethernet address of the client machine hardware ethernet 00:0D:60:70:0D:EF; # IP address to assign fixed-address 192.168.1.8; }

I've configured the NetworkManager to:

[main]

plugins=ifupdown,keyfile

[ifupdown]

managed=false

and /etc/network/interfaces to:

auto lo

iface lo inet loopback

auto eth0

When I start the network configuration tool, all information sent by DHCP are displayed correctly.

Anny suggestions will be gently appreciated.

B/R andreas

share|improve this question
Is your router routing correctly between 192.168.1.0/28 and 192.168.1.64/30? – jdthood Mar 20 at 9:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.