| Home | Register | Members | Search | Links |
![]() |
| Thread Tools | Display Modes |
|
|
|
| |
|
Bit Twister
Guest
Posts: n/a
|
On Mon, 29 Oct 2007 18:15:57 GMT, Allen Weiner wrote:
> I run Fedora 7 and use Verizon DSL. My modem is a Westell 6100-E90 > modem/router. My DSL connection usually runs well, but about once every > seven to ten days I lose my Internet connection. My SWAG, for some reason, you are not renewing your dhcp lease in the modem. You might root around in the modems web page and see what you can see. > I can regain my > connection by rebooting Fedora. I've not been able to regain my Internet > connection without a reboot (e.g. "service network restart" hangs). Now that is odd, I would have thought it would not matter unless your fedora firewall gets in the way. Would you dump your network settings for us to look at. -------- standard debug network problem text/script follows: ------------ dump_net.txt version 3.4 If you read http://www.catb.org/~esr/faqs/smart-questions.html it will suggest you provide any information about your setup which might help troubleshoot your problem. Example, internet connection type, (cable, adsl,,,), it's hardware, (vendor/model of the modem). Maybe that your system is hooked to a hub/switch/router and type of hookup, (ethernet,usb, wireless,...), distribution, config file values,... . We need to know about your network hardware and see your config settings. Something does not start up, try dmesg and/or look through /var/log/messages for an error message. If your problem is slow network give a url so we can try it. Once you get your network running, you may want to run xx one last time and save the output file for disk crash/new installs ![]() Might not hurt to save xx for one of a network debugging checklist steps. The following ambidexterous script is for suse, mandriva, ubuntu, kubuntu and will dump your hardware status, network settings and config files used in network setup. We need that information to troubleshoot your problem. If you are having to use windows to access Usenet: Format a diskette on the windows system. Copy the following xx.txt script into xx.txt using notepad.exe then save xx.txt to the diskette/cd/usb stick. To get the script results back to Windows and none of the above hardware works, you can use http://www.fs-driver.org/ If you do not want some malware writting to linux. You can replace it with http://www.diskinternals.com/linux-reader/ which does not provide write access, if you have not created a FAT partition to exchange files between OSs. I do recommend removinguninstalling the windows/linux file system driver after you get the linux network up. Makes your Windows AntiVirus scanner run much faster after removal. Also, if logged into windows, it would be nice to include your windows network settings. Click up a Prompt/cmd/terminal and add in contents from ipconfig /all when you reply with linux settings. If using linux for usenet access, su - root, copy script text into xx chmod +x xx ./xx and include a.txt (if on linux) or dosa.txt (if on windows) in your reply. NOTE: to become root, you need to do a su - root not su root For the suse, ubuntu, kubuntu users, sudo -i chmod +x xx sudo xx exit will exit the sudo -i command. If xx is not in your home directory, you will have to provide the full path in place of $HOME. Example: sudo -i chmod +x /some/where/xx /some/where/xx ------------------ Script starts below this line ----------------------- #!/bin/bash #******** start of xx.txt script **************** _fn=a.txt _out_fn=$PWD/$_fn _dos_fn=$PWD/dos${_fn} _home=$PWD function cat_fn { _fn=$1 if [ -f $_fn ] ; then _count=$(stat -c %s $_fn ) if [ $_count -gt 0 ] ; then echo ======== cat $_fn ========== >> $_out_fn cat $_fn >> $_out_fn fi fi } # end cat_fn function grep_fn { _fn=$1 if [ -e $_fn ] ; then _count=$(stat -c %s $_fn ) if [ $_count -gt 0 ] ; then _count=$(grep -v '^#' $_fn | wc -l) if [ $_count -gt 0 ] ; then echo "======== grep -v '^#' $_fn ==========" >> $_out_fn if [ "$_fn" != "shorewall.conf" ] ; then grep -v '^#' $_fn >> $_out_fn else awk 'empty{if (!/^#/) print; empty=0} /^$/{empty=1}' $_fn >> $_out_fn fi fi fi fi } # end grep_fn function ls_dir { _dr=$1 if [ -d $_dr ] ; then echo "========= cd $_dr ; ls -al ========" >> $_out_fn cd $_dr ls -al >> $_out_fn fi } # end ls_dir function tail_fn { _fn=$1 if [ -e $_fn ] ; then echo "======== tail -18 $_fn ==========" >> $_out_fn tail -18 $_fn >> $_out_fn fi } # end tail_fn #******************************** # check if commands are in $PATH # and if not add them path to $PATH #******************************** _path="" type ifconfig > /dev/null 2>&1 if [ $? -ne 0 ] ; then _path="${_path}/sbin:" fi type cat > /dev/null 2>&1 if [ $? -ne 0 ] ; then _path="${_path}/bin:" fi type id > /dev/null 2>&1 if [ $? -ne 0 ] ; then _path="${_path}/usr/bin:" fi if [ -n "$_path" ] ; then PATH=${_path}$PATH export PATH fi #******************************** # check if root and logged in correctly #******************************** _uid=$(id --user) if [ $_uid -ne 0 ] ; then echo " " echo "You need to be root to run $0" echo "CLick up a terminal and do the following:" echo " " echo "su - root" echo "$PWD/xx" exit 1 fi root_flg=1 if [ -n "$LOGNAME" ] ; then if [ "$LOGNAME" != "root" ] ; then root_flg=0 fi fi if [ -n "$USER" ] ; then if [ "$USER" != "root" ] ; then root_flg=0 fi fi if [ $root_flg -eq 0 ] ; then echo " " echo "Guessing you did a su root" echo "instead of a su - root" echo "please exit/logout of this session and do the following:" echo " " echo "su - root" echo "$PWD/xx" echo " " exit 1 fi #******************************** # main code starts here #******************************** echo "Working, output will be in $_out_fn " date > $_out_fn chmod 666 $_out_fn if [ -n "$_path" ] ; then echo ======== echo $PATH ========== >> $_out_fn echo $PATH >> $_out_fn 2>&1 fi cat_fn /etc/product.id echo ======== cat /etc/*release ========== >> $_out_fn cat /etc/*release >> $_out_fn 2>&1 echo ======== uname -rvi ============= >> $_out_fn uname -rvi >> $_out_fn echo ======== cat /etc/*version ========== >> $_out_fn cat /etc/*version >> $_out_fn 2>&1 echo ======== cat /proc/version ========== >> $_out_fn cat /proc/*version >> $_out_fn 2>&1 type lsb_release > /dev/null 2>&1 if [ $? -eq 0 ] ; then echo ======== lsb_release -a ========== >> $_out_fn lsb_release -a >> $_out_fn 2>&1 fi echo " " >> $_out_fn echo msec security level is $SECURE_LEVEL >> $_out_fn echo ======== free ========== >> $_out_fn free >> $_out_fn 2>&1 type chkconfig > /dev/null 2>&1 if [ $? -eq 0 ] ; then echo ======== chkconfig --list ========== >> $_out_fn for _serv in avahi named tmdns ; do chkconfig --list | grep -i $_serv > /dev/null 2>&1 if [ $? -eq 0 ] ; then echo "Double check if /$_serv/ needs to be disabled on boot" >> $_out_fn chkconfig --list | grep -i $_serv >> $_out_fn fi done chkconfig --list >> $_out_fn else echo ======== ls -o /etc/rcS.d/ ========== >> $_out_fn for _serv in avahi named tmdns ; do ls /etc/rcS.d/S* | grep $_serv > /dev/null 2>&1 if [ $? -eq 0 ] ; then echo "Double check if /$_serv/ needs to be disabled on boot" >> $_out_fn fi done ls -o /etc/rcS.d >> $_out_fn fi _fn=/etc/nsswitch.conf if [ -e $_fn ] ; then echo ======== grep hosts: $_fn ========== >> $_out_fn grep hosts: $_fn >> $_out_fn fi grep_fn /etc/resolv.conf grep_fn /etc/resolvconf/resolv.conf.d/head cat_fn /etc/resolvconf/resolv.conf.d/base cat_fn /etc/resolvconf/resolv.conf.d/tail echo ======== hostname ========== >> $_out_fn hostname >> $_out_fn cat_fn /etc/netprofile/profiles/default/files/etc/hosts cat_fn /etc/hostname cat_fn /etc/HOSTNAME ls /etc/mod*.conf > /dev/null 2>&1 if [ $? -eq 0 ] ; then echo "======== grep eth /etc/mod*.conf ==========" >> $_out_fn grep eth /etc/mod*.conf >> $_out_fn fi cat_fn /etc/dhclient-enter-hooks cat_fn /etc/dhclient-exit-hooks grep_fn /etc/host.conf echo ================ ifconfig -a =============== >> $_out_fn ifconfig -a >> $_out_fn cat_fn /etc/iftab cat_fn /etc/udev/rules.d/61-net_config.rules echo ============== route -n ================= >> $_out_fn route -n >> $_out_fn cat_fn /etc/sysconfig/network/routes cat_fn /etc/sysconfig/network grep_fn /etc/mkinitramfs/initramfs.conf echo ============== head -15 /etc/hosts =============== >> $_out_fn head -15 /etc/hosts >> $_out_fn cat_fn /etc/network/interfaces cat_fn /var/run/network/ifstate _cmd="" type ethtool > /dev/null 2>&1 if [ $? -eq 0 ] ; then _cmd="ethtool" fi type mii-tool > /dev/null 2>&1 if [ $? -eq 0 ] ; then _cmd="mii-tool -v" fi if [ -z "$_cmd" ] ; then echo ======== mii-tool/ethtool NOT INSTALLED ========== >> $_out_fn fi for nic in 0 1 2 ; do if [ -n "$_cmd" ] ; then $_cmd eth$nic > /dev/null 2>&1 if [ $? -eq 0 ] ; then echo ======== $_cmd eth$nic ========== >> $_out_fn $_cmd eth$nic >> $_out_fn fi fi echo ======== dmesg | grep eth$nic ========== >> $_out_fn dmesg | grep eth$nic >> $_out_fn cat_fn /etc/sysconfig/network-scripts/ifcfg-eth$nic ifconfig eth$nic > /dev/null 2>&1 if [ $? -eq 0 ] ; then set $(ifconfig eth$nic | tr [A-Z] [a-z]) cat_fn /etc/sysconfig/network/ifcfg-eth-id-$5 fi tail_fn /var/lib/dhcp/dhclient-eth${nic}.leases tail_fn /etc/dhcpc/dhcpcd-eth${nic}.info done # end for nic in 0 1 2 ; do _dir=/etc/NetworkManager/dispatcher.d if [ -d $_dir ] ; then ls_dir $_dir for _d in "if-up.d" "if-down.d" "if-pre-up.d" "if-post-down.d" ; do echo ==== cd /etc/network/${_d} ; ls -al === >> $_out_fn cd /etc/network/${_d} ls -al >> $_out_fn done fi if [ -d /etc/sysconfig/network-scripts ] ; then for _d in "ifdown.d" "ifup.d" ; do _cmd="cd /etc/sysconfig/network-scripts/${_d} ; ls -al " echo "===== $_cmd ====" >> $_out_fn cd /etc/sysconfig/network-scripts/${_d} ls -al >> $_out_fn done fi ls_dir /etc/dhcp3/dhclient-exit-hooks.d ls_dir /etc/resolvconf/update.d if [ -d /etc/shorewall ] ; then _count=$(chkconfig --list shorewall | grep -c n )if [ $_count -gt 0 ] ; then echo "======= Shorewall settings =========" >> $_out_fn cd /etc/shorewall for _f in $(ls) ; do echo "======= $_f =========" >> $_out_fn grep_fn $_f done fi fi cd $_home grep_fn /etc/hosts.allow grep_fn /etc/hosts.deny echo "======= end of config/network data dump ===========" >> $_out_fn awk '{print $0 "\r" }' $_out_fn > $_dos_fn chmod 666 $_dos_fn echo " " echo "If posting via linux, post contents of $_out_fn" echo "You might want to copy it to your account with the command" echo "cp $_out_fn ~your_login" echo " " echo "If posting via windows, post contents of $_dos_fn" echo " " echo "If using diskette," echo "Copy $_dos_fn to diskette with the following commands:" echo " " echo "mkdir -p /floppy" echo "mount -t auto /dev/fd0 /floppy" echo "cp $_dos_fn /floppy" echo "umount /floppy " echo " " echo "and $_dos_fn is ready for windows from diskette" echo " " #*********** end of dump xx.txt script ********* ----------- script ends above this line -------------------------------------- and then copy xx.txt to the diskette. On some linux distributions, you may need to get into the User/Group screen, show all users, double click root, create the password, and enable root. Root's password should never be the same as anyone elses. To move xx.txt from diskette to the linux box, click up a linux terminal su - root (root's passwd) mkdir -p /floppy mount -t auto /dev/fd0 /floppy tr -d '\015' < /floppy/xx.txt > xx chmod +x xx ../xx Back on the windows OS, you can cut/paste the a:\dosa.txt into your reply under windows. Do not attach it. When you do reply, please remove/trim my response/text/script from your reply before you add in the results/output of the script. If you are dual booting the box, you can copy xx.txt to linux from windows. Note: The following assumes /dev/hda1 is where windows is installed on the first partition on the C: drive If you have sata drive, you may have to use /dev/sda1 instead of /dev/hda1. cat /etc/fstab to see which value will be required. Do keep quotes used in the following: mkdir -p /doze mount -t auto /dev/hda1 /doze tr -d '\015' < "/doze/whever/you_saved/xx.txt" > xx umount /doze On windows you can read dosa.txt from a linux partition if you installed windows linux filesystem driver from http://uranus.it.swin.edu.au/~jn/linux/explore2fs.htm Remember to remove/uninstall it to allow your Windows AntiVirus scanner to run faster. |
|
|
|
|
|||
|
|||
|
Allen Weiner
Guest
Posts: n/a
|
Bit Twister wrote:
> On Mon, 29 Oct 2007 18:15:57 GMT, Allen Weiner wrote: >> I run Fedora 7 and use Verizon DSL. My modem is a Westell 6100-E90 >> modem/router. My DSL connection usually runs well, but about once every >> seven to ten days I lose my Internet connection. > > My SWAG, for some reason, you are not renewing your dhcp lease in > the modem. You might root around in the modems web page and see what > you can see. > >> I can regain my >> connection by rebooting Fedora. I've not been able to regain my Internet >> connection without a reboot (e.g. "service network restart" hangs). > > Now that is odd, I would have thought it would not matter unless your fedora > firewall gets in the way. > > Would you dump your network settings for us to look at. > > -------- standard debug network problem text/script follows: ------------ > dump_net.txt version 3.4 > > > If you read http://www.catb.org/~esr/faqs/smart-questions.html > it will suggest you provide any information about your setup which might > help troubleshoot your problem. Example, internet connection type, > (cable, adsl,,,), it's hardware, (vendor/model of the modem). > Maybe that your system is hooked to a hub/switch/router and type of > hookup, (ethernet,usb, wireless,...), distribution, config file values,... . > > We need to know about your network hardware and see your config settings. > Modem is Westell 6100-E90 DSL modem/router. No other networking hardware. OS is Fedora 7. (I don't know what SWAG stands for). About DHCP lease, I power off my DSL modem every day at the end of a session. The loss of connection tends to occur about two hours into the session. (Wondering about a misbehaving cron job.).After the failure occurs, I'm unable to access the modem. (Firefox: browse http://192.168.1.1) Following is the a.txt from the xx script. To conserve bandwidth, I edited out from the mii-tool results pages and pages of data on ethernet transmissions. (This is not at time of failure.) Mon Oct 29 17:49:45 EDT 2007 ======== cat /etc/fedora-release /etc/redhat-release ========== Fedora release 7 (Moonshine) Fedora release 7 (Moonshine) ======== uname -rvi ============= 2.6.22.9-91.fc7 #1 SMP Thu Sep 27 23:10:59 EDT 2007 i386 ======== cat /etc/subversion ========== cat: /etc/subversion: Is a directory ======== cat /proc/version ========== Linux version 2.6.22.9-91.fc7 ((E-Mail Removed)) (gcc version 4.1.2 20070502 (Red Hat 4.1.2-12)) #1 SMP Thu Sep 27 23:10:59 EDT 2007 ======== lsb_release -a ========== LSB Version: :core-3.1-ia32:core-3.1-noarch:graphics-3.1-ia32:graphics-3.1-noarch Distributor ID: Fedora Description: Fedora release 7 (Moonshine) Release: 7 Codename: Moonshine msec security level is ======== free ========== total used free shared buffers cached Mem: 125192 119500 5692 0 2232 38200 -/+ buffers/cache: 79068 46124 Swap: 771080 273892 497188 ======== chkconfig --list ========== Double check if /avahi/ needs to be disabled on boot avahi-daemon 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ffavahi-dnsconfd 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffDouble check if /named/ needs to be disabled on boot named 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffConsoleKit 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ffNetworkManager 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffNetworkManagerDispatcher 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffacpid 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ffanacron 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffapmd 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffatd 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ffautofs 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ffavahi-daemon 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ffavahi-dnsconfd 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffbluetooth 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffcapi 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffcpuspeed 0 ff 1 n 2 n 3 n 4 n 5 ff 6 ffcrond 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffcups 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffdhcdbd 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffdund 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 fffirestarter 0 ff 1 ff 2 n 3 n 4 n 5 n 6 fffirstboot 0 ff 1 ff 2 ff 3 n 4 ff 5 ff 6 ffgkrellmd 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffgpm 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffhaldaemon 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ffhddtemp 0 ff 1 ff 2 ff 3 ff 4 ff 5 n 6 ffhidd 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffhplip 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffhttpd 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffip6tables 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffiptables 0 ff 1 ff 2 ff 3 ff 4 ff 5 n 6 ffirda 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffirqbalance 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffisdn 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffkdump 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffkudzu 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 fflisa 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 fflm_sensors 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffmcstrans 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffmdmonitor 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffmessagebus 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ffnamed 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffnasd 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ffnetconsole 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffnetfs 0 ff 1 ff 2 ff 3 n 4 n 5 ff 6 ffnetplugd 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffnetwork 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffnfs 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffnfslock 0 ff 1 ff 2 ff 3 n 4 n 5 ff 6 ffnscd 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffntpd 0 ff 1 ff 2 ff 3 ff 4 ff 5 n 6 ffpand 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffpsacct 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffrdisc 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffreadahead_early 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffreadahead_later 0 ff 1 ff 2 ff 3 ff 4 ff 5 n 6 ffrestorecond 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffrpcbind 0 ff 1 ff 2 ff 3 n 4 n 5 ff 6 ffrpcgssd 0 ff 1 ff 2 ff 3 n 4 n 5 ff 6 ffrpcidmapd 0 ff 1 ff 2 ff 3 n 4 n 5 ff 6 ffrpcsvcgssd 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffsaslauthd 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffsendmail 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffsmartd 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffspamassassin 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffsshd 0 ff 1 ff 2 n 3 n 4 n 5 ff 6 ffsyslog 0 ff 1 ff 2 n 3 n 4 n 5 n 6 fftomcat5 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffvncserver 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffwinbind 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffwpa_supplicant 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffxfs 0 ff 1 ff 2 n 3 n 4 n 5 n 6 ffypbind 0 ff 1 ff 2 ff 3 ff 4 ff 5 ff 6 ffyum-updatesd 0 ff 1 ff 2 ff 3 n 4 n 5 n 6 ff======== grep hosts: /etc/nsswitch.conf ========== #hosts: db files nisplus nis dns hosts: files dns ======== grep -v '^#' /etc/resolv.conf ========== ; generated by /sbin/dhclient-script search myhome.westell.com nameserver 192.168.1.1 nameserver 192.168.1.1 ======== hostname ========== localhost.localdomain ======== grep eth /etc/mod*.conf ========== alias eth0 e100 ======== grep -v '^#' /etc/host.conf ========== order hosts,bind ================ ifconfig -a =============== eth0 Link encap:Ethernet HWaddr 00:07:E9:01:B2:09 inet addr:192.168.1.47 Bcast:255.255.255.255 Mask:255.255.255.0 inet6 addr: fe80::207:e9ff:fe01:b209/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:13459 errors:0 dropped:0 overruns:0 frame:0 TX packets:9958 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:6039195 (5.7 MiB) TX bytes:1541446 (1.4 MiB) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:5263 errors:0 dropped:0 overruns:0 frame:0 TX packets:5263 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:6058422 (5.7 MiB) TX bytes:6058422 (5.7 MiB) ============== route -n ================= Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0 0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0 ======== cat /etc/sysconfig/network ========== NETWORKING=yes HOSTNAME=localhost.localdomain ============== head -15 /etc/hosts =============== ======== mii-tool -v eth0 ========== eth0: negotiated 100baseTx-FD, link ok product info: Intel 82555 rev 4 basic mode: autonegotiation enabled basic status: autonegotiation complete, link ok capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD advertising: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control link partner: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8835 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 < snip tons of same. saved on a.txt if needed> ======== cat /etc/sysconfig/network-scripts/ifcfg-eth0 ========== # Intel Corporation 82557/8/9 [Ethernet Pro 100] DEVICE=eth0 ONBOOT=yes BOOTPROTO=dhcp HWADDR=00:07:e9:01:b2:09 TYPE=Ethernet USERCTL=no IPV6INIT=no PEERDNS=yes ===== cd /etc/sysconfig/network-scripts/ifdown.d ; ls -al ==== total 4432 drwxr-x--- 44 root root 16384 2007-10-29 17:49 . drwxr-xr-x 23 root root 4096 2007-10-29 13:51 .. drwxr-xr-x 2 root root 4096 2006-11-04 21:29 Acroreadrpms -rw------- 1 root root 824 2006-07-26 23:43 anaconda-ks.cfg -rw-rw-rw- 1 root root 137098 2007-10-29 17:49 a.txt -rw------- 1 root root 14166 2007-10-29 13:48 .bash_history -rw-r--r-- 1 root root 24 2006-07-12 20:06 .bash_logout -rw-r--r-- 1 root root 191 2006-07-12 20:06 .bash_profile -rw-r--r-- 1 root root 176 2006-07-12 20:06 .bashrc drwxr-xr-x 3 root root 4096 2007-06-19 11:32 .config -rw-r--r-- 1 root root 100 2006-07-12 20:06 .cshrc drwx------ 3 root root 4096 2007-07-17 11:18 .dbus drwxr-xr-x 2 root root 4096 2007-07-09 10:29 Desktop srwxr-xr-x 1 root root 0 2006-08-09 19:09 .Devhelp.root -rw------- 1 root root 37 2007-05-09 21:48 .dmrc drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Documents drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Download -rw-r--r-- 1 root root 6735 2007-06-21 17:20 eclipsefail -rw-r--r-- 1 root root 3436 2007-06-27 16:46 eclipsegroupinstall -rw-r--r-- 1 root root 5257 2007-06-21 17:44 eclipsegroupupdate -rw-r--r-- 1 root root 73728 2007-06-27 17:20 eclipseinstallJun27 -rw-r--r-- 1 root root 24614 2007-06-24 13:31 eclipseJun24 -rw-r--r-- 1 root root 3887 2006-11-02 16:13 eclipsepde -rw-r--r-- 1 root root 5177 2007-05-30 14:31 eclipsepdeupdate -rw-r--r-- 1 root root 4448 2007-06-27 16:43 eclipseremove drwxr-xr-x 2 root root 4096 2007-07-09 10:31 Eclipserpms -rw-r--r-- 1 root root 209 2007-05-30 14:11 eclipseupdate drwxr-x--- 2 root root 4096 2006-07-27 23:06 .eggcups -rw------- 1 root root 16 2006-07-27 23:30 .esd_auth -rw-r--r-- 1 root root 4020 2007-07-09 13:31 ethtest1~ drwxr-xr-x 7 root root 4096 2006-07-29 22:36 .evolution drwxr-xr-x 2 root root 4096 2007-07-09 10:31 firefoxrpms drwx------ 4 root root 4096 2007-10-28 07:03 .gconf drwx------ 2 root root 4096 2007-10-28 07:52 .gconfd drwxr-xr-x 5 root root 4096 2006-09-05 07:56 .gkrellm2 -rw-r--r-- 1 root root 416 2006-08-08 20:33 .glade2 drwxr-xr-x 3 root root 4096 2006-07-27 23:06 .gnome drwx------ 12 root root 4096 2007-03-27 14:22 .gnome2 drwx------ 2 root root 4096 2006-07-27 23:06 .gnome2_private -rw-r--r-- 1 root root 52390 2007-07-16 22:33 gnomereplace -rw-r--r-- 1 root root 4814 2007-05-30 14:07 gnomeupdate drwx------ 3 root root 4096 2007-07-09 10:29 .gnupg drwxr-xr-x 2 root root 4096 2007-07-17 11:21 .gstreamer-0.10 -rw-r--r-- 1 root root 128 2006-07-27 23:06 .gtkrc-1.2-gnome2 -rw------- 1 root root 0 2007-10-29 17:49 .ICEauthority -rw-r--r-- 1 root root 36325 2006-07-26 23:43 install.log -rw-r--r-- 1 root root 4156 2006-07-26 23:23 install.log.syslog drwxr-xr-x 2 root root 4096 2007-06-21 12:38 K3brpms drwxr-xr-x 4 root root 4096 2006-10-30 14:58 .kde drwxr-xr-x 2 root root 4096 2007-07-09 10:31 KDErpms -rwxr-xr-- 1 root root 670 2006-10-18 11:26 KDEScript -rwxr-xr-- 1 root root 676 2006-10-18 11:25 KDEScript~ -rw-r--r-- 1 root root 3887 2006-11-02 14:06 kdeupdate drwxr-xr-x 2 root root 4096 2007-07-09 10:32 kernelrpms -rw------- 1 root root 35 2007-10-28 17:33 .lesshst drwx------ 3 root root 4096 2006-09-22 14:30 .local -rw-r--r-- 1 root root 3098 2006-08-23 21:49 .mailcap -rw------- 1 root root 657379 2007-02-23 13:26 mbox drwxr-xr-x 3 root root 4096 2006-11-05 21:44 .mcop drwx------ 3 root root 4096 2006-07-27 23:06 .metacity -rw-r--r-- 1 root root 496 2006-10-31 19:53 minicom.log drwx------ 3 root root 4096 2006-08-09 19:09 .mozilla drwxr-xr-x 2 root root 4096 2007-07-09 10:32 mozillarpms drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Music drwxr-xr-x 3 root root 4096 2006-07-27 23:06 .nautilus -rw-r--r-- 1 root root 4307 2007-05-30 14:37 ofxupdate drwxr-xr-x 3 root root 4096 2006-09-22 10:36 .openoffice.org2.0 drwxr-xr-x 2 root root 4096 2007-07-09 10:32 openofficerpms -rwxr-xr-- 1 root root 429 2006-10-18 10:46 OpenOfficeScript -rwxr-xr-- 1 root root 429 2006-10-18 10:46 OpenOfficeScript~ -rwxr-xr-- 1 root root 435 2006-10-18 10:42 OpenOfficeScript~~ drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Pictures drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Public drwxr-xr-x 2 root root 4096 2006-10-30 14:57 .qt -rw------- 1 root root 34889 2006-09-08 15:42 .realplayerrc -rw------- 1 root root 28538 2007-05-15 11:12 .recently-used -rw-r--r-- 1 root root 765 2007-06-19 11:32 .recently-used.xbel -rw-r--r-- 1 root root 17123 2006-09-24 23:09 scsound.log drwxr-xr-x 2 root root 4096 2007-07-09 10:32 tbirdrpms -rw-r--r-- 1 root root 129 2006-07-12 20:06 .tcshrc drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Templates drwx------ 4 root root 4096 2006-08-08 20:36 .thumbnails drwx------ 3 root root 4096 2006-09-14 21:50 .thunderbird drwx------ 2 root root 4096 2006-08-13 13:05 .Trash drwxr-xr-x 2 root root 4096 2007-07-09 10:33 unrarrpms -rw-r--r-- 1 root root 57441 2007-06-17 08:08 upgrade.log -rw-r--r-- 1 root root 1030 2007-06-17 06:21 upgrade.log.syslog drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Videos -rw------- 1 root root 66 2007-08-20 21:33 .xauth0fissA -rw------- 1 root root 66 2007-10-28 17:49 .xauth11HTPF -rw------- 1 root root 66 2007-10-14 14:38 .xauth11qKpw -rw------- 1 root root 66 2007-06-07 10:20 .xauth197tmg -rw------- 1 root root 66 2007-07-14 10:28 .xauth1BusfL -rw------- 1 root root 66 2007-05-15 11:08 .xauth1mjnLK -rw------- 1 root root 66 2007-04-20 10:33 .xauth1Roxw0 -rw------- 1 root root 66 2007-10-21 21:56 .xauth1WRAbQ -rw------- 1 root root 66 2007-07-17 12:11 .xauth1yTV1c -rw------- 1 root root 66 2007-07-11 13:44 .xauth27rcO6 -rw------- 1 root root 66 2007-05-17 15:08 .xauth2A1BSL -rw------- 1 root root 66 2007-06-06 10:16 .xauth2hxcMoI I I -rw------- 1 root root 66 2007-09-12 17:39 .xauth2Yuoky -rw------- 1 root root 66 2007-08-21 19:54 .xauth3BZn0V -rw------- 1 root root 66 2007-07-11 16:17 .xauth3hp2aR -rw------- 1 root root 66 2007-04-14 15:51 .xauth3rKoGt -rw------- 1 root root 66 2007-08-24 13:17 .xauth3YjuLv -rw------- 1 root root 66 2007-07-22 17:52 .xauth3zzC42 -rw------- 1 root root 66 2007-09-10 19:28 .xauth4bfBjr -rw------- 1 root root 66 2007-08-14 21:25 .xauth4hYHVI -rw------- 1 root root 66 2007-05-19 10:13 .xauth4k7XOv -rw------- 1 root root 66 2007-07-09 10:37 .xauth4LtoD9 -rw------- 1 root root 66 2007-05-14 13:30 .xauth4mLweM -rw------- 1 root root 66 2007-05-18 21:35 .xauth4RaUR6 -rw------- 1 root root 66 2007-10-23 19:52 .xauth4SQH5T -rw------- 1 root root 66 2007-06-10 12:56 .xauth4SQNje -rw------- 1 root root 66 2007-06-21 15:59 .xauth52YZDf -rw------- 1 root root 66 2007-07-13 12:58 .xauth55ppaO -rw------- 1 root root 66 2007-04-20 13:28 .xauth5wmIJN -rw------- 1 root root 66 2007-08-22 20:49 .xauth624vtE -rw------- 1 root root 66 2007-05-01 10:36 .xauth6eU8WP -rw------- 1 root root 66 2007-07-17 11:13 .xauth6nBODG -rw------- 1 root root 66 2007-09-02 23:43 .xauth6pJTig -rw------- 1 root root 66 2007-07-18 14:10 .xauth6qJ6ko -rw------- 1 root root 66 2007-06-21 15:33 .xauth6QTooY -rw------- 1 root root 66 2007-03-30 13:07 .xauth6RDIgS -rw------- 1 root root 66 2007-09-16 16:16 .xauth6uRa1P -rw------- 1 root root 66 2007-06-08 20:35 .xauth71CuEq -rw------- 1 root root 66 2007-06-25 16:55 .xauth753Le9 -rw------- 1 root root 66 2007-07-29 20:57 .xauth7FT8Mx -rw------- 1 root root 66 2007-09-17 16:25 .xauth7NGb9H -rw------- 1 root root 66 2007-05-12 09:52 .xauth8412kp -rw------- 1 root root 66 2007-09-29 21:06 .xauth86rGXm -rw------- 1 root root 66 2007-08-15 13:59 .xauth8cxvaq -rw------- 1 root root 66 2007-05-25 10:36 .xauth8uUxIi -rw------- 1 root root 66 2007-09-21 10:42 .xauth9cbl1K -rw------- 1 root root 66 2007-08-20 21:31 .xauth9CTIgf -rw------- 1 root root 66 2007-08-26 16:25 .xauth9KnAHw -rw------- 1 root root 66 2007-07-27 13:53 .xauth9o5TCv -rw------- 1 root root 66 2007-04-29 10:40 .xauthA09dPH -rw------- 1 root root 66 2007-10-07 17:10 .xautha6k97W -rw------- 1 root root 66 2007-10-10 10:15 .xauthAcIXeu -rw------- 1 root root 66 2007-06-13 12:57 .xauthadHYDq -rw------- 1 root root 66 2007-04-24 10:43 .xauthaGZcIX -rw------- 1 root root 66 2007-07-31 11:54 .xauthak1itf -rw------- 1 root root 66 2007-10-22 14:50 .xauthApGyJp -rw------- 1 root root 66 2007-06-22 14:18 .xauthaQpdVt -rw------- 1 root root 66 2007-10-27 20:49 .xauthArMXeL -rw------- 1 root root 66 2007-06-08 10:46 .xauthasw8v0 -rw------- 1 root root 66 2007-08-12 13:28 .xauthaSxSuD -rw------- 1 root root 66 2007-08-06 13:01 .xauthaWF1Ws -rw------- 1 root root 66 2007-07-15 14:02 .xauthAxLp80 -rw------- 1 root root 66 2007-10-01 14:11 .xauthAy5bTt -rw------- 1 root root 66 2007-05-20 14:02 .xauthB6xd77 -rw------- 1 root root 66 2007-06-19 16:13 .xauthBfiIif -rw------- 1 root root 66 2007-06-19 13:55 .xauthBh545B -rw------- 1 root root 66 2007-06-27 10:38 .xauthbkdIfo -rw------- 1 root root 66 2007-06-29 10:36 .xauthBKmHuk -rw------- 1 root root 66 2007-10-07 17:01 .xauthbSdGVF -rw------- 1 root root 66 2007-05-19 10:24 .xauthbuQYWq -rw------- 1 root root 66 2007-10-11 09:11 .xauthBUT0e4 -rw------- 1 root root 66 2007-07-13 10:39 .xauthBX5s6l -rw------- 1 root root 66 2007-07-17 11:51 .xauthc8Jgqz -rw------- 1 root root 66 2007-06-21 13:30 .xauthC8pRKD -rw------- 1 root root 66 2007-06-01 10:31 .xauthCeJCMn -rw------- 1 root root 66 2007-07-29 13:13 .xauthCgHevB -rw------- 1 root root 66 2007-08-04 20:41 .xauthCHFbGo -rw------- 1 root root 66 2007-05-16 14:26 .xauthcjPPMK -rw------- 1 root root 66 2007-05-31 11:03 .xauthCuDm6k -rw------- 1 root root 66 2007-03-31 14:12 .xauthcXX1Ac -rw------- 1 root root 66 2007-08-12 21:10 .xauthCY128T -rw------- 1 root root 66 2007-07-17 13:35 .xauthd4k8Mu -rw------- 1 root root 66 2007-05-03 14:13 .xauthd66mAc -rw------- 1 root root 66 2007-06-15 12:49 .xauthdaxFEh -rw------- 1 root root 66 2007-08-15 21:27 .xauthdBdnae -rw------- 1 root root 66 2007-07-06 11:45 .xauthdci2Jn -rw------- 1 root root 66 2007-05-30 13:17 .xauthddAeFa -rw------- 1 root root 66 2007-08-11 21:03 .xauthdedc3G -rw------- 1 root root 66 2007-10-03 10:18 .xauthDEPBVq -rw------- 1 root root 66 2007-06-25 14:39 .xauthDkQsde -rw------- 1 root root 66 2007-06-27 16:38 .xauthDly82H -rw------- 1 root root 66 2007-07-28 21:06 .xauthdTzxCp -rw------- 1 root root 66 2007-09-03 13:41 .xauthE8fmJT -rw------- 1 root root 66 2007-09-25 17:08 .xauthE8lQDn -rw------- 1 root root 66 2007-10-14 17:29 .xauthEGMHMA -rw------- 1 root root 66 2006-12-06 17:17 .xautheODBTU -rw------- 1 root root 66 2007-08-27 21:53 .xauthEOYj4U -rw------- 1 root root 66 2007-09-19 20:51 .xauthEsrX5j -rw------- 1 root root 66 2007-04-16 14:09 .xauthEtSDNo -rw------- 1 root root 66 2007-07-26 16:15 .xauthEv6vmt -rw------- 1 root root 66 2007-10-07 17:24 .xautheW6YbL -rw------- 1 root root 66 2007-09-30 12:29 .xautheZy4K3 -rw------- 1 root root 66 2007-07-03 10:28 .xauthF0B8f8 -rw------- 1 root root 66 2007-08-02 10:43 .xauthF6MZ0t -rw------- 1 root root 66 2007-08-16 10:39 .xauthfDCY5h -rw------- 1 root root 66 2007-08-31 13:37 .xauthfFfVPn -rw------- 1 root root 66 2007-09-12 14:58 .xauthFHDRZB -rw------- 1 root root 66 2007-10-09 10:57 .xauthFhOLh5 -rw------- 1 root root 66 2007-07-17 11:05 .xauthfKgHPm -rw------- 1 root root 66 2007-05-09 21:56 .xauthFOFFNY -rw------- 1 root root 66 2007-07-09 16:07 .xauthFSdDqI -rw------- 1 root root 66 2007-06-19 11:30 .xauthFTnXI8 -rw------- 1 root root 66 2007-05-02 12:53 .xauthfu6Q4b -rw------- 1 root root 66 2007-08-13 21:09 .xauthfy4MYw -rw------- 1 root root 66 2007-08-10 10:38 .xauthfZyFVl -rw------- 1 root root 66 2007-04-19 09:42 .xauthg5gJB0 -rw------- 1 root root 66 2007-07-09 13:43 .xauthG65uyf -rw------- 1 root root 66 2007-07-20 10:21 .xauthG6MgNS -rw------- 1 root root 66 2007-08-06 10:32 .xauthG9wkoa -rw------- 1 root root 66 2007-05-04 11:23 .xauthGEEmvW -rw------- 1 root root 66 2007-10-18 16:01 .xauthGfBCAB -rw------- 1 root root 66 2007-07-26 11:01 .xauthglfIb7 -rw------- 1 root root 66 2007-08-14 13:27 .xauthgncjK2 -rw------- 1 root root 66 2007-07-26 11:47 .xauthgqaU9w -rw------- 1 root root 66 2007-07-17 13:15 .xauthGqs8Gs -rw------- 1 root root 66 2007-08-24 13:28 .xauthgRcNbp -rw------- 1 root root 66 2007-08-28 11:15 .xauthgvs171 -rw------- 1 root root 66 2007-10-29 13:05 .xauthh2Esvh -rw------- 1 root root 66 2007-10-07 13:36 .xauthH61wVB -rw------- 1 root root 66 2007-08-06 16:01 .xauthH70HOh -rw------- 1 root root 66 2007-08-20 21:42 .xauthhfExoO -rw------- 1 root root 66 2007-08-19 12:54 .xauthHFzMVy -rw------- 1 root root 66 2007-07-01 13:05 .xauthhitZtP -rw------- 1 root root 66 2007-08-03 13:09 .xauthhIzirO -rw------- 1 root root 66 2007-06-11 10:45 .xauthHNAxbO -rw------- 1 root root 66 2007-10-14 18:01 .xauthhNBqYa -rw------- 1 root root 66 2007-04-27 19:57 .xauthHNl0sq -rw------- 1 root root 66 2007-06-04 10:44 .xauthhNLM4y -rw------- 1 root root 66 2007-08-07 12:50 .xauthHrF5sL -rw------- 1 root root 66 2007-10-17 14:16 .xauthHRsBxm -rw------- 1 root root 66 2007-10-24 14:44 .xauthhUbFWf -rw------- 1 root root 66 2007-10-25 14:37 .xauthhVMTx4 -rw------- 1 root root 66 2007-09-26 13:48 .xauthhxpNWM -rw------- 1 root root 66 2007-09-09 21:02 .xauthHzeuFI -rw------- 1 root root 66 2007-05-16 12:08 .xauthi6sKVx -rw------- 1 root root 66 2007-05-28 10:13 .xauthIcLNFH -rw------- 1 root root 66 2007-09-20 09:26 .xauthIhBRsU -rw------- 1 root root 66 2007-06-27 13:30 .xauthihQCnI -rw------- 1 root root 66 2007-06-18 21:18 .xauthimAv13 -rw------- 1 root root 66 2007-08-08 11:53 .xauthIobb1X -rw------- 1 root root 66 2007-09-02 20:14 .xauthiov55F -rw------- 1 root root 66 2007-06-25 10:12 .xauthIqeyj5 -rw------- 1 root root 66 2007-09-12 17:15 .xauthiTOOCu -rw------- 1 root root 66 2007-10-24 10:26 .xauthiU3YaG -rw------- 1 root root 66 2007-10-14 13:03 .xauthIVAB76 -rw------- 1 root root 66 2007-09-07 13:33 .xauthiwXrNM -rw------- 1 root root 66 2007-10-07 16:16 .xauthJ5sahx -rw------- 1 root root 66 2007-10-21 22:03 .xauthJ9vzG5 -rw------- 1 root root 66 2007-08-26 19:45 .xauthjb7rlC -rw------- 1 root root 66 2007-08-06 12:58 .xauthjDSmuP -rw------- 1 root root 66 2007-03-29 11:07 .xauthjgxwdx -rw------- 1 root root 66 2007-10-19 11:07 .xauthJL2Nq8 -rw------- 1 root root 66 2007-10-20 20:09 .xauthjQRf6w -rw------- 1 root root 66 2007-10-18 09:42 .xauthjTjBeX -rw------- 1 root root 66 2007-08-01 15:31 .xauthjvENK3 -rw------- 1 root root 66 2007-05-23 13:33 .xauthKbW03r -rw------- 1 root root 66 2007-09-06 14:21 .xauthkIQTYG -rw------- 1 root root 66 2007-05-13 07:00 .xauthKjlKFX -rw------- 1 root root 66 2007-07-22 21:12 .xauthKkyoQA -rw------- 1 root root 66 2007-09-25 16:23 .xauthKMqQWh -rw------- 1 root root 66 2007-06-27 14:23 .xauthKnUihN -rw------- 1 root root 66 2007-06-21 15:57 .xauthKpNy0u -rw------- 1 root root 66 2007-07-12 23:12 .xauthkrCpNC -rw------- 1 root root 66 2007-09-09 07:08 .xauthKY2Csu -rw------- 1 root root 66 2007-08-27 21:32 .xauthL2KdOm -rw------- 1 root root 66 2007-08-26 13:01 .xauthL5Mr42 -rw------- 1 root root 66 2007-10-25 08:50 .xauthL61pjD -rw------- 1 root root 66 2007-10-25 11:36 .xauthL8g0zd -rw------- 1 root root 66 2007-08-27 12:57 .xauthLf4wGZ -rw------- 1 root root 66 2006-12-10 18:18 .xauthli367n -rw------- 1 root root 66 2007-06-24 13:13 .xauthLiQstp -rw------- 1 root root 66 2007-05-13 12:49 .xauthlj3a8V -rw------- 1 root root 66 2007-05-21 10:10 .xauthlLUnMi -rw------- 1 root root 66 2007-07-26 12:50 .xauthLQLvpF -rw------- 1 root root 66 2007-05-11 12:48 .xauthLR19mV -rw------- 1 root root 66 2007-08-17 09:57 .xauthlsKpGb -rw------- 1 root root 66 2007-04-11 15:19 .xauthLW0SyO -rw------- 1 root root 66 2007-07-13 10:29 .xauthM4q0wl -rw------- 1 root root 66 2007-05-26 10:20 .xauthm8GWkj -rw------- 1 root root 66 2007-09-12 17:30 .xauthmDGJjH -rw------- 1 root root 66 2007-06-05 20:44 .xauthmFzQm2 -rw------- 1 root root 66 2007-06-03 06:42 .xauthMkXnVf -rw------- 1 root root 66 2007-08-20 19:07 .xauthmSmvAZ -rw------- 1 root root 66 2007-05-31 20:16 .xauthMSQ22X -rw------- 1 root root 66 2007-04-26 09:09 .xauthmu783p -rw------- 1 root root 66 2007-07-26 10:08 .xauthmuGkwD -rw------- 1 root root 66 2007-07-13 13:45 .xauthmv06uq -rw------- 1 root root 66 2007-07-16 23:04 .xauthmX06w2 -rw------- 1 root root 66 2007-08-03 10:33 .xauthmXbYOz -rw------- 1 root root 66 2007-07-16 22:27 .xauthn34aZc -rw------- 1 root root 66 2007-09-30 15:24 .xauthN7FfZo -rw------- 1 root root 66 2007-05-24 09:59 .xauthnAPoaB -rw------- 1 root root 66 2007-10-16 15:29 .xauthNj2EcZ -rw------- 1 root root 66 2007-10-07 15:56 .xauthNkzJDV -rw------- 1 root root 66 2007-07-29 15:28 .xauthnRVDr4 -rw------- 1 root root 66 2007-09-18 20:42 .xauthNSleVv -rw------- 1 root root 66 2007-06-02 10:15 .xauthnwr5xB -rw------- 1 root root 66 2007-08-29 10:55 .xauthnZ48dZ -rw------- 1 root root 66 2007-08-01 14:46 .xautho0IUF1 -rw------- 1 root root 66 2007-05-13 06:41 .xautho0yBll -rw------- 1 root root 66 2007-06-15 21:29 .xautho7msGW -rw------- 1 root root 66 2007-06-16 10:03 .xauthOewVVQ -rw------- 1 root root 66 2007-04-25 10:25 .xauthoI1DGJ -rw------- 1 root root 66 2007-09-04 21:02 .xauthOiOGUY -rw------- 1 root root 66 2007-08-02 11:17 .xauthoIrGNd -rw------- 1 root root 66 2007-03-27 14:21 .xauthok8eL9 -rw------- 1 root root 66 2007-07-30 10:18 .xauthoMfhBD -rw------- 1 root root 66 2007-10-15 20:22 .xauthoMotjL -rw------- 1 root root 66 2007-09-06 00:00 .xauthOMQQp4 -rw------- 1 root root 66 2007-09-15 20:16 .xauthomVz8b -rw------- 1 root root 66 2007-09-25 14:04 .xauthoNxtbQ -rw------- 1 root root 66 2007-10-10 15:09 .xauthooEVNN -rw------- 1 root root 66 2007-07-26 11:14 .xauthOULknN -rw------- 1 root root 66 2007-07-31 11:12 .xauthp9WtQl -rw------- 1 root root 66 2007-07-17 01:25 .xauthPAqQ83 -rw------- 1 root root 66 2007-08-20 21:25 .xauthPEWodh -rw------- 1 root root 66 2007-08-23 15:17 .xauthpFoVTo -rw------- 1 root root 66 2007-05-29 08:49 .xauthpg3SSt -rw------- 1 root root 66 2007-08-30 19:19 .xauthPozl0o -rw------- 1 root root 66 2007-08-15 10:55 .xauthpqyGsb -rw------- 1 root root 66 2007-08-13 09:27 .xauthpTIDcP -rw------- 1 root root 66 2007-07-26 10:57 .xauthpWQEpP -rw------- 1 root root 66 2007-08-01 15:26 .xauthPx6yji -rw------- 1 root root 66 2007-09-23 14:27 .xauthqbClVi -rw------- 1 root root 66 2007-10-21 19:33 .xauthqO4jFz -rw------- 1 root root 66 2007-08-25 21:04 .xauthQqYpqs -rw------- 1 root root 66 2007-06-24 19:04 .xauthQyp5ll -rw------- 1 root root 66 2007-07-14 22:02 .xauthQznciX -rw------- 1 root root 66 2007-07-13 14:50 .xauthR9ElP2 -rw------- 1 root root 66 2007-04-23 10:15 .xauthrdqKL2 -rw------- 1 root root 66 2007-06-14 19:43 .xauthRegNer -rw------- 1 root root 66 2007-10-07 07:04 .xauthRfNYFN -rw------- 1 root root 66 2007-05-06 12:58 .xauthRiZm5u -rw------- 1 root root 66 2007-07-22 14:07 .xauthRp4Dbs -rw------- 1 root root 66 2007-06-19 17:18 .xauthRRLoXy -rw------- 1 root root 66 2007-07-13 13:13 .xauthrszFSP -rw------- 1 root root 66 2007-08-26 14:03 .xauthrtPCb5 -rw------- 1 root root 66 2007-06-03 13:32 .xauthrVEZEB -rw------- 1 root root 66 2007-08-20 21:35 .xauthrxiz4b -rw------- 1 root root 66 2007-05-05 10:13 .xauthRZmasB -rw------- 1 root root 66 2007-07-09 13:18 .xauths54cz6 -rw------- 1 root root 66 2007-09-05 17:50 .xauthsGGshA -rw------- 1 root root 66 2007-10-03 14:45 .xauthShvOzW -rw------- 1 root root 66 2007-10-12 10:12 .xauthsjgDuE -rw------- 1 root root 66 2007-04-17 15:56 .xauthskKyqm -rw------- 1 root root 66 2007-03-28 09:33 .xauthSSBAps -rw------- 1 root root 66 2007-07-25 15:05 .xauthSuD5OK -rw------- 1 root root 66 2007-04-30 12:58 .xauthT2Gik0 -rw------- 1 root root 66 2007-07-27 11:23 .xautht35SYA -rw------- 1 root root 66 2007-05-27 14:19 .xauthtBGWJM -rw------- 1 root root 66 2007-07-19 10:50 .xauthtCknVg -rw------- 1 root root 66 2007-09-01 21:12 .xauthtdKlWK -rw------- 1 root root 66 2007-10-14 17:04 .xauthTF1DMv -rw------- 1 root root 66 2007-09-05 17:05 .xauthtkD3H3 -rw------- 1 root root 66 2007-10-26 10:16 .xauthTkQcF3 -rw------- 1 root root 66 2007-04-13 11:18 .xauthtPngqu -rw------- 1 root root 66 2007-07-24 13:29 .xauthTuhpLW -rw------- 1 root root 66 2007-08-15 12:59 .xauthU0sqEe -rw------- 1 root root 66 2007-10-08 10:51 .xauthu5cnFh -rw------- 1 root root 66 2007-10-02 10:03 .xauthu6m1Is -rw------- 1 root root 66 2007-05-18 10:11 .xauthu8SOXS -rw------- 1 root root 66 2007-09-11 13:24 .xauthUgIJI9 -rw------- 1 root root 66 2007-10-28 07:03 .xauthujNbqW -rw------- 1 root root 66 2007-08-24 13:40 .xauthuLfalz -rw------- 1 root root 66 2007-06-25 11:58 .xauthUnkzl3 -rw------- 1 root root 66 2007-08-18 20:57 .xauthUSCUI6 -rw------- 1 root root 66 2007-04-21 10:13 .xauthUtT4x9 -rw------- 1 root root 66 2007-09-06 10:55 .xauthuVNV3b -rw------- 1 root root 66 2007-07-11 10:33 .xauthUz6JVz -rw------- 1 root root 66 2007-05-16 11:21 .xauthv2cnED -rw------- 1 root root 66 2007-10-12 13:15 .xauthvaFA11 -rw------- 1 root root 66 2007-10-28 17:26 .xauthVKJeEq -rw------- 1 root root 66 2007-09-25 17:14 .xauthVm3yqo -rw------- 1 root root 66 2007-09-19 23:14 .xauthvm9fL6 -rw------- 1 root root 66 2007-08-01 15:40 .xauthVMxBxz -rw------- 1 root root 66 2007-09-02 20:03 .xauthVt1VcG -rw------- 1 root root 66 2007-06-27 11:06 .xauthvygFdx -rw------- 1 root root 66 2007-08-14 23:13 .xauthwnawCJ -rw------- 1 root root 66 2007-10-11 21:28 .xauthWPEu7g -rw------- 1 root root 66 2007-05-07 21:11 .xauthWSjNub -rw------- 1 root root 66 2007-10-13 20:09 .xauthwt7Ido -rw------- 1 root root 66 2007-04-08 16:01 .xauthwV3PqN -rw------- 1 root root 66 2007-06-27 16:50 .xauthwwucUT -rw------- 1 root root 66 2007-08-12 17:07 .xauthWXYuDD -rw------- 1 root root 66 2007-10-06 21:07 .xauthx0y7KR -rw------- 1 root root 66 2007-05-22 15:00 .xauthxes4Eb -rw------- 1 root root 66 2007-10-12 13:40 .xauthxeuz67 -rw------- 1 root root 66 2007-06-09 10:38 .xauthxLcHZ9 -rw------- 1 root root 66 2007-08-26 15:16 .xauthXlkntS -rw------- 1 root root 66 2007-10-29 17:47 .xauthXmHyJ9 -rw------- 1 root root 66 2007-08-05 20:33 .xauthxoCO3v -rw------- 1 root root 66 2007-09-04 23:19 .xauthXpKl9I -rw------- 1 root root 66 2007-08-12 16:04 .xauthXVByAm -rw------- 1 root root 66 2007-08-09 21:53 .xauthXXDx0c -rw------- 1 root root 66 2007-08-05 14:09 .xauthy3Bmzy -rw------- 1 root root 66 2006-12-06 15:18 .xauthYaOeib -rw------- 1 root root 66 2007-09-30 14:53 .xauthYCsrSO -rw------- 1 root root 66 2007-08-16 11:04 .xauthyH8hA9 -rw------- 1 root root 66 2007-07-09 16:19 .xauthYM1ZPv -rw------- 1 root root 66 2007-08-14 14:00 .xauthYRFAnw -rw------- 1 root root 66 2007-07-22 17:34 .xauthyuTgYx -rw------- 1 root root 66 2007-04-28 15:12 .xauthYXet9o -rw------- 1 root root 66 2007-09-24 17:30 .xauthZ4SIrB -rw------- 1 root root 66 2007-05-10 10:08 .xauthzAf6va -rw------- 1 root root 66 2007-08-09 10:22 .xauthZcRTIw -rw------- 1 root root 66 2007-08-24 10:47 .xauthzDYbrF -rw------- 1 root root 66 2007-06-16 21:17 .xauthzHku2k -rw------- 1 root root 66 2007-07-29 16:13 .xauthZnzXeq -rw------- 1 root root 66 2007-09-03 15:59 .xauthzo3NT7 -rw------- 1 root root 66 2007-04-22 10:25 .xauthZTEi8L -rw------- 1 root root 66 2007-07-21 21:07 .xauthZxCMlv drwxr-xr-x 4 root root 4096 2006-09-01 15:11 .xmms -rwxr-xr-x 1 root root 7878 2007-10-29 17:49 xx -rw-r--r-- 1 root root 0 2006-09-22 14:33 yumupdates ===== cd /etc/sysconfig/network-scripts/ifup.d ; ls -al ==== total 4456 drwxr-x--- 44 root root 16384 2007-10-29 17:49 . drwxr-xr-x 23 root root 4096 2007-10-29 13:51 .. drwxr-xr-x 2 root root 4096 2006-11-04 21:29 Acroreadrpms -rw------- 1 root root 824 2006-07-26 23:43 anaconda-ks.cfg -rw-rw-rw- 1 root root 162121 2007-10-29 17:49 a.txt -rw------- 1 root root 14166 2007-10-29 13:48 .bash_history -rw-r--r-- 1 root root 24 2006-07-12 20:06 .bash_logout -rw-r--r-- 1 root root 191 2006-07-12 20:06 .bash_profile -rw-r--r-- 1 root root 176 2006-07-12 20:06 .bashrc drwxr-xr-x 3 root root 4096 2007-06-19 11:32 .config -rw-r--r-- 1 root root 100 2006-07-12 20:06 .cshrc drwx------ 3 root root 4096 2007-07-17 11:18 .dbus drwxr-xr-x 2 root root 4096 2007-07-09 10:29 Desktop srwxr-xr-x 1 root root 0 2006-08-09 19:09 .Devhelp.root -rw------- 1 root root 37 2007-05-09 21:48 .dmrc drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Documents drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Download -rw-r--r-- 1 root root 6735 2007-06-21 17:20 eclipsefail -rw-r--r-- 1 root root 3436 2007-06-27 16:46 eclipsegroupinstall -rw-r--r-- 1 root root 5257 2007-06-21 17:44 eclipsegroupupdate -rw-r--r-- 1 root root 73728 2007-06-27 17:20 eclipseinstallJun27 -rw-r--r-- 1 root root 24614 2007-06-24 13:31 eclipseJun24 -rw-r--r-- 1 root root 3887 2006-11-02 16:13 eclipsepde -rw-r--r-- 1 root root 5177 2007-05-30 14:31 eclipsepdeupdate -rw-r--r-- 1 root root 4448 2007-06-27 16:43 eclipseremove drwxr-xr-x 2 root root 4096 2007-07-09 10:31 Eclipserpms -rw-r--r-- 1 root root 209 2007-05-30 14:11 eclipseupdate drwxr-x--- 2 root root 4096 2006-07-27 23:06 .eggcups -rw------- 1 root root 16 2006-07-27 23:30 .esd_auth -rw-r--r-- 1 root root 4020 2007-07-09 13:31 ethtest1~ drwxr-xr-x 7 root root 4096 2006-07-29 22:36 .evolution drwxr-xr-x 2 root root 4096 2007-07-09 10:31 firefoxrpms drwx------ 4 root root 4096 2007-10-28 07:03 .gconf drwx------ 2 root root 4096 2007-10-28 07:52 .gconfd drwxr-xr-x 5 root root 4096 2006-09-05 07:56 .gkrellm2 -rw-r--r-- 1 root root 416 2006-08-08 20:33 .glade2 drwxr-xr-x 3 root root 4096 2006-07-27 23:06 .gnome drwx------ 12 root root 4096 2007-03-27 14:22 .gnome2 drwx------ 2 root root 4096 2006-07-27 23:06 .gnome2_private -rw-r--r-- 1 root root 52390 2007-07-16 22:33 gnomereplace -rw-r--r-- 1 root root 4814 2007-05-30 14:07 gnomeupdate drwx------ 3 root root 4096 2007-07-09 10:29 .gnupg drwxr-xr-x 2 root root 4096 2007-07-17 11:21 .gstreamer-0.10 -rw-r--r-- 1 root root 128 2006-07-27 23:06 .gtkrc-1.2-gnome2 -rw------- 1 root root 0 2007-10-29 17:49 .ICEauthority -rw-r--r-- 1 root root 36325 2006-07-26 23:43 install.log -rw-r--r-- 1 root root 4156 2006-07-26 23:23 install.log.syslog drwxr-xr-x 2 root root 4096 2007-06-21 12:38 K3brpms drwxr-xr-x 4 root root 4096 2006-10-30 14:58 .kde drwxr-xr-x 2 root root 4096 2007-07-09 10:31 KDErpms -rwxr-xr-- 1 root root 670 2006-10-18 11:26 KDEScript -rwxr-xr-- 1 root root 676 2006-10-18 11:25 KDEScript~ -rw-r--r-- 1 root root 3887 2006-11-02 14:06 kdeupdate drwxr-xr-x 2 root root 4096 2007-07-09 10:32 kernelrpms -rw------- 1 root root 35 2007-10-28 17:33 .lesshst drwx------ 3 root root 4096 2006-09-22 14:30 .local -rw-r--r-- 1 root root 3098 2006-08-23 21:49 .mailcap -rw------- 1 root root 657379 2007-02-23 13:26 mbox drwxr-xr-x 3 root root 4096 2006-11-05 21:44 .mcop drwx------ 3 root root 4096 2006-07-27 23:06 .metacity -rw-r--r-- 1 root root 496 2006-10-31 19:53 minicom.log drwx------ 3 root root 4096 2006-08-09 19:09 .mozilla drwxr-xr-x 2 root root 4096 2007-07-09 10:32 mozillarpms drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Music drwxr-xr-x 3 root root 4096 2006-07-27 23:06 .nautilus -rw-r--r-- 1 root root 4307 2007-05-30 14:37 ofxupdate drwxr-xr-x 3 root root 4096 2006-09-22 10:36 .openoffice.org2.0 drwxr-xr-x 2 root root 4096 2007-07-09 10:32 openofficerpms -rwxr-xr-- 1 root root 429 2006-10-18 10:46 OpenOfficeScript -rwxr-xr-- 1 root root 429 2006-10-18 10:46 OpenOfficeScript~ -rwxr-xr-- 1 root root 435 2006-10-18 10:42 OpenOfficeScript~~ drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Pictures drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Public drwxr-xr-x 2 root root 4096 2006-10-30 14:57 .qt -rw------- 1 root root 34889 2006-09-08 15:42 .realplayerrc -rw------- 1 root root 28538 2007-05-15 11:12 .recently-used -rw-r--r-- 1 root root 765 2007-06-19 11:32 .recently-used.xbel -rw-r--r-- 1 root root 17123 2006-09-24 23:09 scsound.log drwxr-xr-x 2 root root 4096 2007-07-09 10:32 tbirdrpms -rw-r--r-- 1 root root 129 2006-07-12 20:06 .tcshrc drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Templates drwx------ 4 root root 4096 2006-08-08 20:36 .thumbnails drwx------ 3 root root 4096 2006-09-14 21:50 .thunderbird drwx------ 2 root root 4096 2006-08-13 13:05 .Trash drwxr-xr-x 2 root root 4096 2007-07-09 10:33 unrarrpms -rw-r--r-- 1 root root 57441 2007-06-17 08:08 upgrade.log -rw-r--r-- 1 root root 1030 2007-06-17 06:21 upgrade.log.syslog drwxr-xr-x 2 root root 4096 2007-06-18 20:04 Videos -rw------- 1 root root 66 2007-08-20 21:33 .xauth0fissA -rw------- 1 root root 66 2007-10-28 17:49 .xauth11HTPF -rw------- 1 root root 66 2007-10-14 14:38 .xauth11qKpw -rw------- 1 root root 66 2007-06-07 10:20 .xauth197tmg -rw------- 1 root root 66 2007-07-14 10:28 .xauth1BusfL -rw------- 1 root root 66 2007-05-15 11:08 .xauth1mjnLK -rw------- 1 root root 66 2007-04-20 10:33 .xauth1Roxw0 -rw------- 1 root root 66 2007-10-21 21:56 .xauth1WRAbQ -rw------- 1 root root 66 2007-07-17 12:11 .xauth1yTV1c -rw------- 1 root root 66 2007-07-11 13:44 .xauth27rcO6 -rw------- 1 root root 66 2007-05-17 15:08 .xauth2A1BSL -rw------- 1 root root 66 2007-06-06 10:16 .xauth2hxcMo -rw------- 1 root root 66 2007-09-12 17:39 .xauth2Yuoky -rw------- 1 root root 66 2007-08-21 19:54 .xauth3BZn0V -rw------- 1 root root 66 2007-07-11 16:17 .xauth3hp2aR -rw------- 1 root root 66 2007-04-14 15:51 .xauth3rKoGt -rw------- 1 root root 66 2007-08-24 13:17 .xauth3YjuLv -rw------- 1 root root 66 2007-07-22 17:52 .xauth3zzC42 -rw------- 1 root root 66 2007-09-10 19:28 .xauth4bfBjr -rw------- 1 root root 66 2007-08-14 21:25 .xauth4hYHVI -rw------- 1 root root 66 2007-05-19 10:13 .xauth4k7XOv -rw------- 1 root root 66 2007-07-09 10:37 .xauth4LtoD9 -rw------- 1 root root 66 2007-05-14 13:30 .xauth4mLweM -rw------- 1 root root 66 2007-05-18 21:35 .xauth4RaUR6 -rw------- 1 root root 66 2007-10-23 19:52 .xauth4SQH5T -rw------- 1 root root 66 2007-06-10 12:56 .xauth4SQNje -rw------- 1 root root 66 2007-06-21 15:59 .xauth52YZDf -rw------- 1 root root 66 2007-07-13 12:58 .xauth55ppaO -rw------- 1 root root 66 2007-04-20 13:28 .xauth5wmIJN -rw------- 1 root root 66 2007-08-22 20:49 .xauth624vtE -rw------- 1 root root 66 2007-05-01 10:36 .xauth6eU8WP -rw------- 1 root root 66 2007-07-17 11:13 .xauth6nBODG -rw------- 1 root root 66 2007-09-02 23:43 .xauth6pJTig -rw------- 1 root root 66 2007-07-18 14:10 .xauth6qJ6ko -rw------- 1 root root 66 2007-06-21 15:33 .xauth6QTooY -rw------- 1 root root 66 2007-03-30 13:07 .xauth6RDIgS -rw------- 1 root root 66 2007-09-16 16:16 .xauth6uRa1P -rw------- 1 root root 66 2007-06-08 20:35 .xauth71CuEq -rw------- 1 root root 66 2007-06-25 16:55 .xauth753Le9 -rw------- 1 root root 66 2007-07-29 20:57 .xauth7FT8Mx -rw------- 1 root root 66 2007-09-17 16:25 .xauth7NGb9H -rw------- 1 root root 66 2007-05-12 09:52 .xauth8412kp -rw------- 1 root root 66 2007-09-29 21:06 .xauth86rGXm -rw------- 1 root root 66 2007-08-15 13:59 .xauth8cxvaq -rw------- 1 root root 66 2007-05-25 10:36 .xauth8uUxIi -rw------- 1 root root 66 2007-09-21 10:42 .xauth9cbl1K -rw------- 1 root root 66 2007-08-20 21:31 .xauth9CTIgf -rw------- 1 root root 66 2007-08-26 16:25 .xauth9KnAHw -rw------- 1 root root 66 2007-07-27 13:53 .xauth9o5TCv -rw------- 1 root root 66 2007-04-29 10:40 .xauthA09dPH -rw------- 1 root root 66 2007-10-07 17:10 .xautha6k97W -rw------- 1 root root 66 2007-10-10 10:15 .xauthAcIXeu -rw------- 1 root root 66 2007-06-13 12:57 .xauthadHYDq -rw------- 1 root root 66 2007-04-24 10:43 .xauthaGZcIX -rw------- 1 root root 66 2007-07-31 11:54 .xauthak1itf -rw------- 1 root root 66 2007-10-22 14:50 .xauthApGyJp -rw------- 1 root root 66 2007-06-22 14:18 .xauthaQpdVt -rw------- 1 root root 66 2007-10-27 20:49 .xauthArMXeL -rw------- 1 root root 66 2007-06-08 10:46 .xauthasw8v0 -rw------- 1 root root 66 2007-08-12 13:28 .xauthaSxSuD -rw------- 1 root root 66 2007-08-06 13:01 .xauthaWF1Ws -rw------- 1 root root 66 2007-07-15 14:02 .xauthAxLp80 -rw------- 1 root root 66 2007-10-01 14:11 .xauthAy5bTt -rw------- 1 root root 66 2007-05-20 14:02 .xauthB6xd77 -rw------- 1 root root 66 2007-06-19 16:13 .xauthBfiIif -rw------- 1 root root 66 2007-06-19 13:55 .xauthBh545B -rw------- 1 root root 66 2007-06-27 10:38 .xauthbkdIfo -rw------- 1 root root 66 2007-06-29 10:36 .xauthBKmHuk -rw------- 1 root root 66 2007-10-07 17:01 .xauthbSdGVF -rw------- 1 root root 66 2007-05-19 10:24 .xauthbuQYWq -rw------- 1 root root 66 2007-10-11 09:11 .xauthBUT0e4 -rw------- 1 root root 66 2007-07-13 10:39 .xauthBX5s6l -rw------- 1 root root 66 2007-07-17 11:51 .xauthc8Jgqz -rw------- 1 root root 66 2007-06-21 13:30 .xauthC8pRKD -rw------- 1 root root 66 2007-06-01 10:31 .xauthCeJCMn -rw------- 1 root root 66 2007-07-29 13:13 .xauthCgHevB -rw------- 1 root root 66 2007-08-04 20:41 .xauthCHFbGo -rw------- 1 root root 66 2007-05-16 14:26 .xauthcjPPMK -rw------- 1 root root 66 2007-05-31 11:03 .xauthCuDm6k -rw------- 1 root root 66 2007-03-31 14:12 .xauthcXX1Ac -rw------- 1 root root 66 2007-08-12 21:10 .xauthCY128T -rw------- 1 root root 66 2007-07-17 13:35 .xauthd4k8Mu -rw------- 1 root root 66 2007-05-03 14:13 .xauthd66mAc -rw------- 1 root root 66 2007-06-15 12:49 .xauthdaxFEh -rw------- 1 root root 66 2007-08-15 21:27 .xauthdBdnae -rw------- 1 root root 66 2007-07-06 11:45 .xauthdci2Jn -rw------- 1 root root 66 2007-05-30 13:17 .xauthddAeFa -rw------- 1 root root 66 2007-08-11 21:03 .xauthdedc3G -rw------- 1 root root 66 2007-10-03 10:18 .xauthDEPBVq -rw------- 1 root root 66 2007-06-25 14:39 .xauthDkQsde -rw------- 1 root root 66 2007-06-27 16:38 .xauthDly82H -rw------- 1 root root 66 2007-07-28 21:06 .xauthdTzxCp -rw------- 1 root root 66 2007-09-03 13:41 .xauthE8fmJT -rw------- 1 root root 66 2007-09-25 17:08 .xauthE8lQDn -rw------- 1 root root 66 2007-10-14 17:29 .xauthEGMHMA -rw------- 1 root root 66 2006-12-06 17:17 .xautheODBTU -rw------- 1 root root 66 2007-08-27 21:53 .xauthEOYj4U -rw------- 1 root root 66 2007-09-19 20:51 .xauthEsrX5j -rw------- 1 root root 66 2007-04-16 14:09 .xauthEtSDNo -rw------- 1 root root 66 2007-07-26 16:15 .xauthEv6vmt -rw------- 1 root root 66 2007-10-07 17:24 .xautheW6YbL -rw------- 1 root root 66 2007-09-30 12:29 .xautheZy4K3 -rw------- 1 root root 66 2007-07-03 10:28 .xauthF0B8f8 -rw------- 1 root root 66 2007-08-02 10:43 .xauthF6MZ0t -rw------- 1 root root 66 2007-08-16 10:39 .xauthfDCY5h -rw------- 1 root root 66 2007-08-31 13:37 .xauthfFfVPn -rw------- 1 root root 66 2007-09-12 14:58 .xauthFHDRZB -rw------- 1 root root 66 2007-10-09 10:57 .xauthFhOLh5 -rw------- 1 root root 66 2007-07-17 11:05 .xauthfKgHPm -rw------- 1 root root 66 2007-05-09 21:56 .xauthFOFFNY -rw------- 1 root root 66 2007-07-09 16:07 .xauthFSdDqI -rw------- 1 root root 66 2007-06-19 11:30 .xauthFTnXI8 -rw------- 1 root root 66 2007-05-02 12:53 .xauthfu6Q4b -rw------- 1 root root 66 2007-08-13 21:09 .xauthfy4MYw -rw------- 1 root root 66 2007-08-10 10:38 .xauthfZyFVl -rw------- 1 root root 66 2007-04-19 09:42 .xauthg5gJB0 -rw------- 1 root root 66 2007-07-09 13:43 .xauthG65uyf -rw------- 1 root root 66 2007-07-20 10:21 .xauthG6MgNS -rw------- 1 root root 66 2007-08-06 10:32 .xauthG9wkoa -rw------- 1 root root 66 2007-05-04 11:23 .xauthGEEmvW -rw------- 1 root root 66 2007-10-18 16:01 .xauthGfBCAB -rw------- 1 root root 66 2007-07-26 11:01 .xauthglfIb7 -rw------- 1 root root 66 2007-08-14 13:27 .xauthgncjK2 -rw------- 1 root root 66 2007-07-26 11:47 .xauthgqaU9w -rw------- 1 root root 66 2007-07-17 13:15 .xauthGqs8Gs -rw------- 1 root root 66 2007-08-24 13:28 .xauthgRcNbp -rw------- 1 root root 66 2007-08-28 11:15 .xauthgvs171 -rw------- 1 root root 66 2007-10-29 13:05 .xauthh2Esvh -rw------- 1 root root 66 2007-10-07 13:36 .xauthH61wVB -rw------- 1 root root 66 2007-08-06 16:01 .xauthH70HOh -rw------- 1 root root 66 2007-08-20 21:42 .xauthhfExoO -rw------- 1 root root 66 2007-08-19 12:54 .xauthHFzMVy -rw------- 1 root root 66 2007-07-01 13:05 .xauthhitZtP -rw------- 1 root root 66 2007-08-03 13:09 .xauthhIzirO -rw------- 1 root root 66 2007-06-11 10:45 .xauthHNAxbO -rw------- 1 root root 66 2007-10-14 18:01 .xauthhNBqYa -rw------- 1 root root 66 2007-04-27 19:57 .xauthHNl0sq -rw------- 1 root root 66 2007-06-04 10:44 .xauthhNLM4y -rw------- 1 root root 66 2007-08-07 12:50 .xauthHrF5sL -rw------- 1 root root 66 2007-10-17 14:16 .xauthHRsBxm -rw------- 1 root root 66 2007-10-24 14:44 .xauthhUbFWf -rw------- 1 root root 66 2007-10-25 14:37 .xauthhVMTx4 -rw------- 1 root root 66 2007-09-26 13:48 .xauthhxpNWM -rw------- 1 root root 66 2007-09-09 21:02 .xauthHzeuFI -rw------- 1 root root 66 2007-05-16 12:08 .xauthi6sKVx -rw------- 1 root root 66 2007-05-28 10:13 .xauthIcLNFH -rw------- 1 root root 66 2007-09-20 09:26 .xauthIhBRsU -rw------- 1 root root 66 2007-06-27 13:30 .xauthihQCnI -rw------- 1 root root 66 2007-06-18 21:18 .xauthimAv13 -rw------- 1 root root 66 2007-08-08 11:53 .xauthIobb1X -rw------- 1 root root 66 2007-09-02 20:14 .xauthiov55F -rw------- 1 root root 66 2007-06-25 10:12 .xauthIqeyj5 -rw------- 1 root root 66 2007-09-12 17:15 .xauthiTOOCu -rw------- 1 root root 66 2007-10-24 10:26 .xauthiU3YaG -rw------- 1 root root 66 2007-10-14 13:03 .xauthIVAB76 -rw------- 1 root root 66 2007-09-07 13:33 .xauthiwXrNM -rw------- 1 root root 66 2007-10-07 16:16 .xauthJ5sahx -rw------- 1 root root 66 2007-10-21 22:03 .xauthJ9vzG5 -rw------- 1 root root 66 2007-08-26 19:45 .xauthjb7rlC -rw------- 1 root root 66 2007-08-06 12:58 .xauthjDSmuP -rw------- 1 root root 66 2007-03-29 11:07 .xauthjgxwdx -rw------- 1 root root 66 2007-10-19 11:07 .xauthJL2Nq8 -rw------- 1 root root 66 2007-10-20 20:09 .xauthjQRf6w -rw------- 1 root root 66 2007-10-18 09:42 .xauthjTjBeX -rw------- 1 root root 66 2007-08-01 15:31 .xauthjvENK3 -rw------- 1 root root 66 2007-05-23 13:33 .xauthKbW03r -rw------- 1 root root 66 2007-09-06 14:21 .xauthkIQTYG -rw------- 1 root root 66 2007-05-13 07:00 .xauthKjlKFX -rw------- 1 root root 66 2007-07-22 21:12 .xauthKkyoQA -rw------- 1 root root 66 2007-09-25 16:23 .xauthKMqQWh -rw------- 1 root root 66 2007-06-27 14:23 .xauthKnUihN -rw------- 1 root root 66 2007-06-21 15:57 .xauthKpNy0u -rw------- 1 root root 66 2007-07-12 23:12 .xauthkrCpNC -rw------- 1 root root 66 2007-09-09 07:08 .xauthKY2Csu -rw------- 1 root root 66 2007-08-27 21:32 .xauthL2KdOm -rw------- 1 root root 66 2007-08-26 13:01 .xauthL5Mr42 -rw------- 1 root root 66 2007-10-25 08:50 .xauthL61pjD -rw------- 1 root root 66 2007-10-25 11:36 .xauthL8g0zd -rw------- 1 root root 66 2007-08-27 12:57 .xauthLf4wGZ -rw------- 1 root root 66 2006-12-10 18:18 .xauthli367n -rw------- 1 root root 66 2007-06-24 13:13 .xauthLiQstp -rw------- 1 root root 66 2007-05-13 12:49 .xauthlj3a8V -rw------- 1 root root 66 2007-05-21 10:10 .xauthlLUnMi -rw------- 1 root root 66 2007-07-26 12:50 .xauthLQLvpF -rw------- 1 root root 66 2007-05-11 12:48 .xauthLR19mV -rw------- 1 root root 66 2007-08-17 09:57 .xauthlsKpGb -rw------- 1 root root 66 2007-04-11 15:19 .xauthLW0SyO -rw------- 1 root root 66 2007-07-13 10:29 .xauthM4q0wl -rw------- 1 root root 66 2007-05-26 10:20 .xauthm8GWkj -rw------- 1 root root 66 2007-09-12 17:30 .xauthmDGJjH -rw------- 1 root root 66 2007-06-05 20:44 .xauthmFzQm2 -rw------- 1 root root 66 2007-06-03 06:42 .xauthMkXnVf -rw------- 1 root root 66 2007-08-20 19:07 .xauthmSmvAZ -rw------- 1 root root 66 2007-05-31 20:16 .xauthMSQ22X -rw------- 1 root root 66 2007-04-26 09:09 .xauthmu783p -rw------- 1 root root 66 2007-07-26 10:08 .xauthmuGkwD -rw------- 1 root root 66 2007-07-13 13:45 .xauthmv06uq -rw------- 1 root root 66 2007-07-16 23:04 .xauthmX06w2 -rw------- 1 root root 66 2007-08-03 10:33 .xauthmXbYOz -rw------- 1 root root 66 2007-07-16 22:27 .xauthn34aZc -rw------- 1 root root 66 2007-09-30 15:24 .xauthN7FfZo -rw------- 1 root root 66 2007-05-24 09:59 .xauthnAPoaB -rw------- 1 root root 66 2007-10-16 15:29 .xauthNj2EcZ -rw------- 1 root root 66 2007-10-07 15:56 .xauthNkzJDV -rw------- 1 root root 66 2007-07-29 15:28 .xauthnRVDr4 -rw------- 1 root root 66 2007-09-18 20:42 .xauthNSleVv -rw------- 1 root root 66 2007-06-02 10:15 .xauthnwr5xB -rw------- 1 root root 66 2007-08-29 10:55 .xauthnZ48dZ -rw------- 1 root root 66 2007-08-01 14:46 .xautho0IUF1 -rw------- 1 root root 66 2007-05-13 06:41 .xautho0yBll -rw------- 1 root root 66 2007-06-15 21:29 .xautho7msGW -rw------- 1 root root 66 2007-06-16 10:03 .xauthOewVVQ -rw------- 1 root root 66 2007-04-25 10:25 .xauthoI1DGJ -rw------- 1 root root 66 2007-09-04 21:02 .xauthOiOGUY -rw------- 1 root root 66 2007-08-02 11:17 .xauthoIrGNd -rw------- 1 root root 66 2007-03-27 14:21 .xauthok8eL9 -rw------- 1 root root 66 2007-07-30 10:18 .xauthoMfhBD -rw------- 1 root root 66 2007-10-15 20:22 .xauthoMotjL -rw------- 1 root root 66 2007-09-06 00:00 .xauthOMQQp4 -rw------- 1 root root 66 2007-09-15 20:16 .xauthomVz8b -rw------- 1 root root 66 2007-09-25 14:04 .xauthoNxtbQ -rw------- 1 root root 66 2007-10-10 15:09 .xauthooEVNN -rw------- 1 root root 66 2007-07-26 11:14 .xauthOULknN -rw------- 1 root root 66 2007-07-31 11:12 .xauthp9WtQl -rw------- 1 root root 66 2007-07-17 01:25 .xauthPAqQ83 -rw------- 1 root root 66 2007-08-20 21:25 .xauthPEWodh -rw------- 1 root root 66 2007-08-23 15:17 .xauthpFoVTo -rw------- 1 root root 66 2007-05-29 08:49 .xauthpg3SSt -rw------- 1 root root 66 2007-08-30 19:19 .xauthPozl0o -rw------- 1 root root 66 2007-08-15 10:55 .xauthpqyGsb -rw------- 1 root root 66 2007-08-13 09:27 .xauthpTIDcP -rw------- 1 root root 66 2007-07-26 10:57 .xauthpWQEpP -rw------- 1 root root 66 2007-08-01 15:26 .xauthPx6yji -rw------- 1 root root 66 2007-09-23 14:27 .xauthqbClVi -rw------- 1 root root 66 2007-10-21 19:33 .xauthqO4jFz -rw------- 1 root root 66 2007-08-25 21:04 .xauthQqYpqs -rw------- 1 root root 66 2007-06-24 19:04 .xauthQyp5ll -rw------- 1 root root 66 2007-07-14 22:02 .xauthQznciX -rw------- 1 root root 66 2007-07-13 14:50 .xauthR9ElP2 -rw------- 1 root root 66 2007-04-23 10:15 .xauthrdqKL2 -rw------- 1 root root 66 2007-06-14 19:43 .xauthRegNer -rw------- 1 root root 66 2007-10-07 07:04 .xauthRfNYFN -rw------- 1 root root 66 2007-05-06 12:58 .xauthRiZm5u -rw------- 1 root root 66 2007-07-22 14:07 .xauthRp4Dbs -rw------- 1 root root 66 2007-06-19 17:18 .xauthRRLoXy -rw------- 1 root root 66 2007-07-13 13:13 .xauthrszFSP -rw------- 1 root root 66 2007-08-26 14:03 .xauthrtPCb5 -rw------- 1 root root 66 2007-06-03 13:32 .xauthrVEZEB -rw------- 1 root root 66 2007-08-20 21:35 .xauthrxiz4b -rw------- 1 root root 66 2007-05-05 10:13 .xauthRZmasB -rw------- 1 root root 66 2007-07-09 13:18 .xauths54cz6 -rw------- 1 root root 66 2007-09-05 17:50 .xauthsGGshA -rw------- 1 root root 66 2007-10-03 14:45 .xauthShvOzW -rw------- 1 root root 66 2007-10-12 10:12 .xauthsjgDuE -rw------- 1 root root 66 2007-04-17 15:56 .xauthskKyqm -rw------- 1 root root 66 2007-03-28 09:33 .xauthSSBAps -rw------- 1 root root 66 2007-07-25 15:05 .xauthSuD5OK -rw------- 1 root root 66 2007-04-30 12:58 .xauthT2Gik0 -rw------- 1 root root 66 2007-07-27 11:23 .xautht35SYA -rw------- 1 root root 66 2007-05-27 14:19 .xauthtBGWJM -rw------- 1 root root 66 2007-07-19 10:50 .xauthtCknVg -rw------- 1 root root 66 2007-09-01 21:12 .xauthtdKlWK -rw------- 1 root root 66 2007-10-14 17:04 .xauthTF1DMv -rw------- 1 root root 66 2007-09-05 17:05 .xauthtkD3H3 -rw------- 1 root root 66 2007-10-26 10:16 .xauthTkQcF3 -rw------- 1 root root 66 2007-04-13 11:18 .xauthtPngqu -rw------- 1 root root 66 2007-07-24 13:29 .xauthTuhpLW -rw------- 1 root root 66 2007-08-15 12:59 .xauthU0sqEe -rw------- 1 root root 66 2007-10-08 10:51 .xauthu5cnFh -rw------- 1 root root 66 2007-10-02 10:03 .xauthu6m1Is -rw------- 1 root root 66 2007-05-18 10:11 .xauthu8SOXS -rw------- 1 root root 66 2007-09-11 13:24 .xauthUgIJI9 -rw------- 1 root root 66 2007-10-28 07:03 .xauthujNbqW -rw------- 1 root root 66 2007-08-24 13:40 .xauthuLfalz -rw------- 1 root root 66 2007-06-25 11:58 .xauthUnkzl3 -rw------- 1 root root 66 2007-08-18 20:57 .xauthUSCUI6 -rw------- 1 root root 66 2007-04-21 10:13 .xauthUtT4x9 -rw------- 1 root root 66 2007-09-06 10:55 .xauthuVNV3b -rw------- 1 root root 66 2007-07-11 10:33 .xauthUz6JVz -rw------- 1 root root 66 2007-05-16 11:21 .xauthv2cnED -rw------- 1 root root 66 2007-10-12 13:15 .xauthvaFA11 -rw------- 1 root root 66 2007-10-28 17:26 .xauthVKJeEq -rw------- 1 root root 66 2007-09-25 17:14 .xauthVm3yqo -rw------- 1 root root 66 2007-09-19 23:14 .xauthvm9fL6 -rw------- 1 root root 66 2007-08-01 15:40 .xauthVMxBxz -rw------- 1 root root 66 2007-09-02 20:03 .xauthVt1VcG -rw------- 1 root root 66 2007-06-27 11:06 .xauthvygFdx -rw------- 1 root root 66 2007-08-14 23:13 .xauthwnawCJ -rw------- 1 root root 66 2007-10-11 21:28 .xauthWPEu7g -rw------- 1 root root 66 2007-05-07 21:11 .xauthWSjNub -rw------- 1 root root 66 2007-10-13 20:09 .xauthwt7Ido -rw------- 1 root root 66 2007-04-08 16:01 .xauthwV3PqN -rw------- 1 root root 66 2007-06-27 16:50 .xauthwwucUT -rw------- 1 root root 66 2007-08-12 17:07 .xauthWXYuDD -rw------- 1 root root 66 2007-10-06 21:07 .xauthx0y7KR -rw------- 1 root root 66 2007-05-22 15:00 .xauthxes4Eb -rw------- 1 root root 66 2007-10-12 13:40 .xauthxeuz67 -rw------- 1 root root 66 2007-06-09 10:38 .xauthxLcHZ9 -rw------- 1 root root 66 2007-08-26 15:16 .xauthXlkntS -rw------- 1 root root 66 2007-10-29 17:47 .xauthXmHyJ9 -rw------- 1 root root 66 2007-08-05 20:33 .xauthxoCO3v -rw------- 1 root root 66 2007-09-04 23:19 .xauthXpKl9I -rw------- 1 root root 66 2007-08-12 16:04 .xauthXVByAm -rw------- 1 root root 66 2007-08-09 21:53 .xauthXXDx0c -rw------- 1 root root 66 2007-08-05 14:09 .xauthy3Bmzy -rw------- 1 root root 66 2006-12-06 15:18 .xauthYaOeib -rw------- 1 root root 66 2007-09-30 14:53 .xauthYCsrSO -rw------- 1 root root 66 2007-08-16 11:04 .xauthyH8hA9 -rw------- 1 root root 66 2007-07-09 16:19 .xauthYM1ZPv -rw------- 1 root root 66 2007-08-14 14:00 .xauthYRFAnw -rw------- 1 root root 66 2007-07-22 17:34 .xauthyuTgYx -rw------- 1 root root 66 2007-04-28 15:12 .xauthYXet9o -rw------- 1 root root 66 2007-09-24 17:30 .xauthZ4SIrB -rw------- 1 root root 66 2007-05-10 10:08 .xauthzAf6va -rw------- 1 root root 66 2007-08-09 10:22 .xauthZcRTIw -rw------- 1 root root 66 2007-08-24 10:47 .xauthzDYbrF -rw------- 1 root root 66 2007-06-16 21:17 .xauthzHku2k -rw------- 1 root root 66 2007-07-29 16:13 .xauthZnzXeq -rw------- 1 root root 66 2007-09-03 15:59 .xauthzo3NT7 -rw------- 1 root root 66 2007-04-22 10:25 .xauthZTEi8L -rw------- 1 root root 66 2007-07-21 21:07 .xauthZxCMlv drwxr-xr-x 4 root root 4096 2006-09-01 15:11 .xmms -rwxr-xr-x 1 root root 7878 2007-10-29 17:49 xx -rw-r--r-- 1 root root 0 2006-09-22 14:33 yumupdates ======== grep -v '^#' /etc/hosts.allow ========== ======== grep -v '^#' /etc/hosts.deny ========== ======= end of config/network data dump =========== |
|
|
|
|
|||
|
|||
|
Bill Marcum
Guest
Posts: n/a
|
On 2007-10-29, Allen Weiner <(E-Mail Removed)> wrote:
> I run Fedora 7 and use Verizon DSL. My modem is a Westell 6100-E90 > modem/router. My DSL connection usually runs well, but about once every > seven to ten days I lose my Internet connection. I can regain my > connection by rebooting Fedora. I've not been able to regain my Internet > connection without a reboot (e.g. "service network restart" hangs). > > I'm trying to troubleshoot this loss of connection. I've collected a > bunch of troubleshooting info. I'd like to know what is the next > troubleshooting step. > > Following is what I've got so far: > > Modem status: the DSL LED is solid green. The Internet and Ethernet > LED's are blinking green. I interpret this as meaning that I've not lost > sync, and that the modem is actually transmitting data to the Internet. > > NIC LEDs: NIC is Intel Pro/100 M with two LEDs. The LEDs are both lit. > The 100Mb LED is solid green. The LINK/ACT LED is blinking green. The > status of these LEDs is the same as when I have an Internet connection. > > GKrellm: The eth0 monitor shows zero activity. When I have an Internet > connection, the eth0 monitor shows continuous activity, even when I'm > not accessing anything. > > KNetstats monitor: (analogous to the Gnome desktop applet). This shows > I'm disconnected. The icon has a red circle containing a white "X". > > dmesg: NETDEV WATCHDOG: eth0: transmit timed out > > ifconfig: eth0 UP, BROADCAST, and MULTICAST, but *not* RUNNING. IP > address 192.168.1.47 > > ethtool eth0: link detected: yes > > ping 192.168.1.47 OK > > ping 192.168.1.1 Destination host unreachable. (I don't know if there > is any point in pinging 192.168.1.1) > > What troubleshooting step should I do next? Have you browsed the modem's web interface? If it isn't at http://192.168.1.1 try http://192.168.1.254 Try these commands: route -n cat /etc/resolv.conf |
|
|
|
|
|||
|
|||
|
Tauno Voipio
Guest
Posts: n/a
|
Allen Weiner wrote:
> Bit Twister wrote: > >> On Mon, 29 Oct 2007 18:15:57 GMT, Allen Weiner wrote: >> >>> I run Fedora 7 and use Verizon DSL. My modem is a Westell 6100-E90 >>> modem/router. My DSL connection usually runs well, but about once >>> every seven to ten days I lose my Internet connection. >> >> >> My SWAG, for some reason, you are not renewing your dhcp lease in >> the modem. You might root around in the modems web page and see what >> you can see. >> >>> I can regain my connection by rebooting Fedora. I've not been able to >>> regain my Internet connection without a reboot (e.g. "service network >>> restart" hangs). >> >> >> Now that is odd, I would have thought it would not matter unless your >> fedora >> firewall gets in the way. >> >> Would you dump your network settings for us to look at. Here: (-- extra clipped, TV --) > IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8835 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Your firewall is cutting your router (and all external traffic via default gateway) off. It is a good question why the router is attempting to connect to the HTTP port of your computer. The (cut-off) rest of the same porridge may have further clues on what's going on. -- Tauno Voipio tauno voipio (at) iki fi |
|
|
|
|
|||
|
|||
|
Allen Weiner
Guest
Posts: n/a
|
Tauno Voipio wrote:
> Allen Weiner wrote: >> Bit Twister wrote: >> >>> On Mon, 29 Oct 2007 18:15:57 GMT, Allen Weiner wrote: >>> >>>> I run Fedora 7 and use Verizon DSL. My modem is a Westell 6100-E90 >>>> modem/router. My DSL connection usually runs well, but about once >>>> every seven to ten days I lose my Internet connection. >>> >>> >>> My SWAG, for some reason, you are not renewing your dhcp lease in >>> the modem. You might root around in the modems web page and see what >>> you can see. >>> >>>> I can regain my connection by rebooting Fedora. I've not been able >>>> to regain my Internet connection without a reboot (e.g. "service >>>> network restart" hangs). >>> >>> >>> Now that is odd, I would have thought it would not matter unless your >>> fedora >>> firewall gets in the way. >>> >>> Would you dump your network settings for us to look at. > > Here: > > (-- extra clipped, TV --) > >> IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 >> SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 >> ID=8835 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > >> Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 >> SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 >> ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > > Your firewall is cutting your router (and all external > traffic via default gateway) off. > > It is a good question why the router is attempting to > connect to the HTTP port of your computer. > > The (cut-off) rest of the same porridge may have further > clues on what's going on. > Since I'm a novice at both networking and at Linux, I don't have any idea how you concluded from the two above ethernet transmissions that my firewall (presumably you mean my software firewall Firestarter and not the hardware firewall in the modem/router). Please not that the above data was not recorded at time of connection loss. It was recorded while I had a functioning Internet connection, in order to display my network configuration, as requested in this thread by Bit-Twister. So. I would not be able to reach any conclusions by looking at more of those ethernet transmissions. But I do have stored in a file the entire output of the mii-tool. If you wish, I can post more of it. Tell me about how many transmissions would be helpful. For the time being, here are a few more: IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8835 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8853 DF PROTO=TCP SPT=1289 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8854 DF PROTO=TCP SPT=1289 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8855 DF PROTO=TCP SPT=1289 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8872 DF PROTO=TCP SPT=1290 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8873 DF PROTO=TCP SPT=1290 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8874 DF PROTO=TCP SPT=1290 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8891 DF PROTO=TCP SPT=1291 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8892 DF PROTO=TCP SPT=1291 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8893 DF PROTO=TCP SPT=1291 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8910 DF PROTO=TCP SPT=1292 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8911 DF PROTO=TCP SPT=1292 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8912 DF PROTO=TCP SPT=1292 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8929 DF PROTO=TCP SPT=1293 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8930 DF PROTO=TCP SPT=1293 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8931 DF PROTO=TCP SPT=1293 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8948 DF PROTO=TCP SPT=1294 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8949 DF PROTO=TCP SPT=1294 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8951 DF PROTO=TCP SPT=1294 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 |
|
|
|
|
|||
|
|||
|
Allen Weiner
Guest
Posts: n/a
|
Bill Marcum wrote:
> On 2007-10-29, Allen Weiner <(E-Mail Removed)> wrote: >> I run Fedora 7 and use Verizon DSL. My modem is a Westell 6100-E90 >> modem/router. My DSL connection usually runs well, but about once every >> seven to ten days I lose my Internet connection. I can regain my >> connection by rebooting Fedora. I've not been able to regain my Internet >> connection without a reboot (e.g. "service network restart" hangs). >> >> I'm trying to troubleshoot this loss of connection. I've collected a >> bunch of troubleshooting info. I'd like to know what is the next >> troubleshooting step. >> >> Following is what I've got so far: >> >> Modem status: the DSL LED is solid green. The Internet and Ethernet >> LED's are blinking green. I interpret this as meaning that I've not lost >> sync, and that the modem is actually transmitting data to the Internet. >> >> NIC LEDs: NIC is Intel Pro/100 M with two LEDs. The LEDs are both lit. >> The 100Mb LED is solid green. The LINK/ACT LED is blinking green. The >> status of these LEDs is the same as when I have an Internet connection. >> >> GKrellm: The eth0 monitor shows zero activity. When I have an Internet >> connection, the eth0 monitor shows continuous activity, even when I'm >> not accessing anything. >> >> KNetstats monitor: (analogous to the Gnome desktop applet). This shows >> I'm disconnected. The icon has a red circle containing a white "X". >> >> dmesg: NETDEV WATCHDOG: eth0: transmit timed out >> >> ifconfig: eth0 UP, BROADCAST, and MULTICAST, but *not* RUNNING. IP >> address 192.168.1.47 >> >> ethtool eth0: link detected: yes >> >> ping 192.168.1.47 OK >> >> ping 192.168.1.1 Destination host unreachable. (I don't know if there >> is any point in pinging 192.168.1.1) >> >> What troubleshooting step should I do next? > Have you browsed the modem's web interface? If it isn't at > http://192.168.1.1 try http://192.168.1.254 > > Try these commands: > route -n > cat /etc/resolv.conf My modem interface is at http://192.168.1.1. When I lose my Internet connection, I've tried to access the modem's web interface using Firefox. The access failed. (That's the reason I also tried ping 192.168.1.1, which returned a "destination not reachable".) The ping of 192.168.1.47 runs successfully. ============== route -n ================= Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0 0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0 [root@localhost ~]# cat /etc/resolv.conf ; generated by /sbin/dhclient-script search myhome.westell.com nameserver 192.168.1.1 nameserver 192.168.1.1 |
|
|
|
|
|||
|
|||
|
Allen Weiner
Guest
Posts: n/a
|
Allen Weiner wrote:
> Tauno Voipio wrote: >> Allen Weiner wrote: >>> Bit Twister wrote: >>> >>>> On Mon, 29 Oct 2007 18:15:57 GMT, Allen Weiner wrote: >>>> >>>>> I run Fedora 7 and use Verizon DSL. My modem is a Westell 6100-E90 >>>>> modem/router. My DSL connection usually runs well, but about once >>>>> every seven to ten days I lose my Internet connection. >>>> >>>> >>>> My SWAG, for some reason, you are not renewing your dhcp lease in >>>> the modem. You might root around in the modems web page and see what >>>> you can see. >>>> >>>>> I can regain my connection by rebooting Fedora. I've not been able >>>>> to regain my Internet connection without a reboot (e.g. "service >>>>> network restart" hangs). >>>> >>>> >>>> Now that is odd, I would have thought it would not matter unless >>>> your fedora >>>> firewall gets in the way. >>>> >>>> Would you dump your network settings for us to look at. >> >> Here: >> >> (-- extra clipped, TV --) >> >>> IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 >>> SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 >>> ID=8835 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 >> >>> Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 >>> SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 >>> ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 >> >> Your firewall is cutting your router (and all external >> traffic via default gateway) off. >> >> It is a good question why the router is attempting to >> connect to the HTTP port of your computer. >> >> The (cut-off) rest of the same porridge may have further >> clues on what's going on. >> > > Since I'm a novice at both networking and at Linux, I don't have any > idea how you concluded from the two above ethernet transmissions that my > firewall (presumably you mean my software firewall Firestarter and not > the hardware firewall in the modem/router). Please not that the above > data was not recorded at time of connection loss. It was recorded while > I had a functioning Internet connection, in order to display my network > configuration, as requested in this thread by Bit-Twister. > > So. I would not be able to reach any conclusions by looking at more of > those ethernet transmissions. But I do have stored in a file the entire > output of the mii-tool. If you wish, I can post more of it. Tell me > about how many transmissions would be helpful. > Your comment about my firewall cutting off my router brings the following thought to mind. Every day I get a logwatch report summarizing events logged on the previous day. The iptables report always lists about 1000- 2000 packets being logged. This is always a lot smaller than the total amount of data transmitted/received during the session. I never understood the significance of that report. |
|
|
|
|
|||
|
|||
|
Tauno Voipio
Guest
Posts: n/a
|
Allen Weiner wrote:
> Tauno Voipio wrote: > >> Allen Weiner wrote: >> >>> Bit Twister wrote: >>> >>>> On Mon, 29 Oct 2007 18:15:57 GMT, Allen Weiner wrote: >>>> >>>>> I run Fedora 7 and use Verizon DSL. My modem is a Westell 6100-E90 >>>>> modem/router. My DSL connection usually runs well, but about once >>>>> every seven to ten days I lose my Internet connection. >>>> >>>> >>>> >>>> My SWAG, for some reason, you are not renewing your dhcp lease in >>>> the modem. You might root around in the modems web page and see what >>>> you can see. >>>> >>>>> I can regain my connection by rebooting Fedora. I've not been able >>>>> to regain my Internet connection without a reboot (e.g. "service >>>>> network restart" hangs). >>>> >>>> >>>> >>>> Now that is odd, I would have thought it would not matter unless >>>> your fedora >>>> firewall gets in the way. >>>> >>>> Would you dump your network settings for us to look at. >> >> >> Here: >> >> (-- extra clipped, TV --) >> >>> IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 >>> SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 >>> ID=8835 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 >> >> >>> Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 >>> SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 >>> ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 >> >> >> Your firewall is cutting your router (and all external >> traffic via default gateway) off. >> >> It is a good question why the router is attempting to >> connect to the HTTP port of your computer. >> >> The (cut-off) rest of the same porridge may have further >> clues on what's going on. >> > > Since I'm a novice at both networking and at Linux, I don't have any > idea how you concluded from the two above ethernet transmissions that my > firewall (presumably you mean my software firewall Firestarter and not > the hardware firewall in the modem/router). Please not that the above > data was not recorded at time of connection loss. It was recorded while > I had a functioning Internet connection, in order to display my network > configuration, as requested in this thread by Bit-Twister. > > So. I would not be able to reach any conclusions by looking at more of > those ethernet transmissions. But I do have stored in a file the entire > output of the mii-tool. If you wish, I can post more of it. Tell me > about how many transmissions would be helpful. > > For the time being, here are a few more: > > IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8835 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8853 DF PROTO=TCP SPT=1289 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8854 DF PROTO=TCP SPT=1289 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8855 DF PROTO=TCP SPT=1289 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8872 DF PROTO=TCP SPT=1290 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8873 DF PROTO=TCP SPT=1290 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8874 DF PROTO=TCP SPT=1290 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8891 DF PROTO=TCP SPT=1291 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8892 DF PROTO=TCP SPT=1291 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8893 DF PROTO=TCP SPT=1291 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8910 DF PROTO=TCP SPT=1292 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8911 DF PROTO=TCP SPT=1292 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8912 DF PROTO=TCP SPT=1292 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8929 DF PROTO=TCP SPT=1293 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8930 DF PROTO=TCP SPT=1293 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8931 DF PROTO=TCP SPT=1293 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8948 DF PROTO=TCP SPT=1294 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8949 DF PROTO=TCP SPT=1294 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8951 DF PROTO=TCP SPT=1294 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 OK, let's split one report (picked from above): > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 Inbound IN=eth0 OUT= <== data into the host via eth0 MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 <== Ethernet header: 00:07:e9:01:b2:09 destination MAC (computer Ethernet address) 00:18:3a:53:f7:fb source MAC (router Ethernet address) 08:00 payload type: IP packet SRC=192.168.1.1 <== source IP, router DST=192.168.1.47 <== destination IP, computer LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8836 <== IP parameters DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 TCP parameters: - do not fragment - source port 1288 - destination port 80 (HTTP / WWW) - receive window 8192 bytes - SYN packet, attempting connection - no urgent data This packet is an attempt from your router to connect to your computer's HTTP/WWW server, if there is any. I do not see why a respectable router would attempt such a thing. As far as I see, all of the listed packets are similar. The firewall may blacklist your router because of these attempts. Maybe your ISP attempts to discover if the clients are having webservers. Is it prohibited in the contract? -- Tauno Voipio tauno voipio (at) iki fi |
|
|
|
|
|||
|
|||
|
Allen Weiner
Guest
Posts: n/a
|
Tauno Voipio wrote:
> Allen Weiner wrote: >> Tauno Voipio wrote: >> >>> Allen Weiner wrote: >>> >>>> Bit Twister wrote: >>>> >>>>> On Mon, 29 Oct 2007 18:15:57 GMT, Allen Weiner wrote: >>>>> >>>>>> I run Fedora 7 and use Verizon DSL. My modem is a Westell 6100-E90 >>>>>> modem/router. My DSL connection usually runs well, but about once >>>>>> every seven to ten days I lose my Internet connection. >>>>> >>>>> >>>>> >>>>> My SWAG, for some reason, you are not renewing your dhcp lease in >>>>> the modem. You might root around in the modems web page and see what >>>>> you can see. >>>>> >>>>>> I can regain my connection by rebooting Fedora. I've not been able >>>>>> to regain my Internet connection without a reboot (e.g. "service >>>>>> network restart" hangs). >>>>> >>>>> >>>>> >>>>> Now that is odd, I would have thought it would not matter unless >>>>> your fedora >>>>> firewall gets in the way. >>>>> >>>>> Would you dump your network settings for us to look at. >>> >>> >>> Here: >>> >>> (-- extra clipped, TV --) >>> >>>> IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 >>>> SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 >>>> ID=8835 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 >>> >>> >>>> Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 >>>> SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 >>>> ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 >>> >>> >>> Your firewall is cutting your router (and all external >>> traffic via default gateway) off. >>> >>> It is a good question why the router is attempting to >>> connect to the HTTP port of your computer. >>> >>> The (cut-off) rest of the same porridge may have further >>> clues on what's going on. >>> >> >> Since I'm a novice at both networking and at Linux, I don't have any >> idea how you concluded from the two above ethernet transmissions that my >> firewall (presumably you mean my software firewall Firestarter and not >> the hardware firewall in the modem/router). Please not that the above >> data was not recorded at time of connection loss. It was recorded >> while I had a functioning Internet connection, in order to display my >> network configuration, as requested in this thread by Bit-Twister. >> >> So. I would not be able to reach any conclusions by looking at more of >> those ethernet transmissions. But I do have stored in a file the >> entire output of the mii-tool. If you wish, I can post more of it. >> Tell me about how many transmissions would be helpful. >> >> For the time being, here are a few more: >> <snip> > > > OK, let's split one report (picked from above): > > > Inbound IN=eth0 OUT= MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 > > SRC=192.168.1.1 DST=192.168.1.47 LEN=60 TOS=0x00 PREC=0x00 TTL=64 > > ID=8836 DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > > Inbound IN=eth0 OUT= <== data into the host via eth0 > > MAC=00:07:e9:01:b2:09:00:18:3a:53:f7:fb:08:00 <== Ethernet header: > 00:07:e9:01:b2:09 destination MAC (computer Ethernet address) > 00:18:3a:53:f7:fb source MAC (router Ethernet address) > 08:00 payload type: IP packet > > SRC=192.168.1.1 <== source IP, router > DST=192.168.1.47 <== destination IP, computer > > LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8836 <== IP parameters > > DF PROTO=TCP SPT=1288 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 > > TCP parameters: > - do not fragment > - source port 1288 > - destination port 80 (HTTP / WWW) > - receive window 8192 bytes > - SYN packet, attempting connection > - no urgent data > > This packet is an attempt from your router to connect to > your computer's HTTP/WWW server, if there is any. I do not > see why a respectable router would attempt such a thing. > > As far as I see, all of the listed packets are similar. > > The firewall may blacklist your router because of these > attempts. > > Maybe your ISP attempts to discover if the clients are > having webservers. Is it prohibited in the contract? > Thanks for the detailed explanation of those messages. I had zero understanding of them. Yes, my ISP, Verizon, prohibits webservers. I'm using a budget, $15 per month, consumer DSL service. |
|
|
|
|
|||
|
|||
|
|
|
| |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Troubleshooting connection loss (continued) | Allen Weiner | Linux Networking | 38 | 11-15-2007 04:55 PM |
| DSL connection loss (novice question) | Allen Weiner | Linux Networking | 0 | 10-17-2007 06:28 PM |
| Network novice question. | Michael Swift | Network Routers | 3 | 10-11-2007 10:51 PM |
| Network novice question. | Michael Swift | Wireless Networks | 2 | 10-05-2007 07:04 PM |
| Novice question, hope you can help. | Mackem | Broadband | 7 | 02-06-2005 01:43 PM |
Forum Software Powered by vBulletin®, Copyright Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc. |



Linear Mode

