From owner-freebsd-questions@FreeBSD.ORG Mon Dec 12 17:35:03 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2C3116A420 for ; Mon, 12 Dec 2005 17:35:02 +0000 (GMT) (envelope-from rmarella@gmail.com) Received: from ms-smtp-02-eri0.socal.rr.com (ms-smtp-02-qfe0.socal.rr.com [66.75.162.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA72B43D7F for ; Mon, 12 Dec 2005 17:34:51 +0000 (GMT) (envelope-from rmarella@gmail.com) Received: from frankie.konav201.local (cpe-66-8-187-40.hawaii.res.rr.com [66.8.187.40]) by ms-smtp-02-eri0.socal.rr.com (8.12.10/8.12.7) with ESMTP id jBCHYjDp019016; Mon, 12 Dec 2005 09:34:46 -0800 (PST) Date: Mon, 12 Dec 2005 07:34:44 -1000 From: Robert Marella To: "Keith Bottner" Message-ID: <20051212073444.701d30a7@frankie.konav201.local> In-Reply-To: <014901c5ff28$2174bac0$1801a8c0@Stile> References: <20051209162735.574015bc@frankie.konav201.local> <014901c5ff28$2174bac0$1801a8c0@Stile> X-Mailer: Sylpheed-Claws 1.9.100 (GTK+ 2.8.9; i386-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: 'FreeBSD Questions' Subject: Re: Detect hardware changes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Dec 2005 17:35:03 -0000 On Mon, 12 Dec 2005 08:27:06 -0600 "Keith Bottner" wrote: > >=20 > > On Thu, Dec 08, 2005 at 12:02:25PM -0900, Peter Giessel wrote: > > > On 12/8/2005 11:51, Keith Bottner seems to have typed: > > > > skc0@pci2:9:0: class=3D0x020000 card=3D0x00241737 chip=3D0x1032173= 7=20 > > > > rev=3D0x10 hdr=3D0x00 > > > > vendor =3D 'Linksys' > > > > device =3D 'EG1032 Gigabit Ethernet' > > > > class =3D network > > > > subclass =3D ethernet > > >=20 >=20 > Ifconfig does not show skc0 but here is the output for completeness: >=20 > xl0: flags=3D8843 mtu 1500 > options=3D9 > inet 192.168.1.217 netmask 0xffffff00 broadcast 192.168.1.255 > inet6 fe80::2b0:d0ff:fe16:3d30%xl0 prefixlen 64 scopeid 0x1=20 > ether 00:b0:d0:16:3d:30 > media: Ethernet autoselect (100baseTX ) > status: active > lo0: flags=3D8049 mtu 16384 > inet 127.0.0.1 netmask 0xff000000=20 > inet6 ::1 prefixlen 128=20 > inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2=20 >=20 > And rc.conf is: >=20 > defaultrouter=3D"192.168.1.1" > hostname=3D"gsdev.bltmobile.com" > ifconfig_xl0=3D"inet 192.168.1.217 netmask 255.255.255.0" > ifconfig_skc0=3D"inet 10.0.130.204 netmask 255.255.255.0" > linux_enable=3D"YES" > moused_enable=3D"YES" > sshd_enable=3D"YES" > usbd_enable=3D"YES" > postgresql_enable=3D"YES" >=20 > Anything else that I can send that will help? >=20 > Keith Hello Keith I'm not sure I can be of any help. I have an older Asus board (2years) that uses an onboard sk card. Here is the output from my machine skc0@pci2:5:0: class=3D0x020000 card=3D0x80eb1043 chip=3D0x170010b7 rev=3D= 0x12 hdr=3D0x00 vendor =3D '3COM Corp, Networking Division' device =3D '3C940 and 3C2000 Gigabit Ethernet PCI CODEC?' class =3D network subclass =3D ethernet Mine is 3COM while yours is Linksys. [robert@p4] ~> grep sk /var/run/dmesg.boot skc0: <3Com 3C940 Gigabit Ethernet> port 0xd800-0xd8ff mem 0xfeafc000-0xfeafffff irq 22 at device 5.0 on pci2 skc0: 3Com Gigabit LOM (3C940) rev. (0x1) sk0: on skc0 sk0: Ethernet address: 00:0c:6e:91:de:a6 miibus0: on sk0 The mii bus is shown here and unless you have removed it from your kernel it would be automatic. =46rom rc.conf defaultrouter=3D"10.0.0.1" hostname=3D"p4.konav201.local" ifconfig_sk0=3D"inet 10.0.0.103 media 100baseTX mediaopt full-duplex netmask 255.255.255.0" Notice that it is sk0 _not_ skc0. AFAIK this is not your problem but it should be changed in your rc.conf file. Except for an occasional "watchdog" it is working fine. I google'd for your error "rid 0x10 is ioport" but didn't see any solutions. There was some reference to ACPI so it might be something to try.=20 BTW I am running 6 Stable. I hope this helps. Good luck Robert