|
|
发表于 2006-11-22 16:31:09
|
显示全部楼层
Hello:
If you are having slow dns lookups, it may have to do with ipv6
here is some things you can check, if you like.
In the firefox address bar bype about: config
and filter for ipv
and set network.dns.disableIPv6
to true
Next
open a terminal and log in as root using
su -
yourpassword
then type
gedit /etc/modbrope.conf
and add the following lines
alias net-pf-10 off
alias ipv6 off
leave a blank line at the end save, and exit
then type
gedit /etc/sysconfig/network
and check and see if
NETWORKING_IPV6=yes
if it does change it to
NETWORKING_IPV6=no
save and exit
diable ip6tables
# chkconfig --level 35 ip6tables off
# service ip6tables stop
You also may want to have a look at you /etc/hosts file and see if the following entry is present.
127.0.0.1 localhost.localdomain localhost |
|