Archive

Posts Tagged ‘networking’

Can access google only?

May 18, 2010 Leave a comment

This very weird problem started showing up quite sudden in my Debian Lenny installation. In a network that I’ve been using for months.

Symptoms:
-You can access google and all related sites (picasa, google docs, etc)
-You can ping all sites (www.somesite.com) successfully
-Your dns resolves names correctly
-Your browser times out when trying to open any other site but Google!!! wtf?!

This problem happens because your MTU (Maximum Transmission Unit) setting of your interface is wrong. Don’t ask me exactly what is wrong and why it is wrong because i don’t now it :). I DO know how to fix it!

type as root:
# ifconfig eth0 mtu 1400

this should do the trick! The next time you start your PC this setting might have gone lost. try adding that line to the
/etc/rc.d/local

hope this helps!
Centi

Categories: linux, networking Tags: , , ,

Bridged connection problem with VMplayer

April 23, 2010 1 comment

Playing around with VMplayer 🙂 I was having trouble getting my bridged connection to work. I then realized that my vmnet0 was trying to bridge wlan0.
Editing the /etc/vmplayer/locations file adding the following:

answer VNET_0_INTERFACE eth0
file /dev/vmnet0

-where eth0 is the desired host interface- and running as root:

#/usr/bin/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 -i eth0

solved the problem! and no need to restart the VM btw… linux is so nice…
Other solution is to run vmware-config.pl but i dont seem to have that file 😦

Regards,
Centi.