LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 09-29-2005, 02:53 AM   #1
GEJOE DANIEL
Member
 
Registered: Aug 2005
Posts: 81

Rep: Reputation: 15
Ethernet driver problem in FC3


Dear all,
i'am using FC3.I have Amd64 with Asus motherboard having on-built Sis190 ethernet card .Fc3 couldn,t identify and i went to asus.com downloaded the linux driver for ethernet and proceeded as mentioned in one of my previous posts(now closed) in newbie section- (please read for kind info..)
http://www.linuxquestions.org/questi...hreadid=364062
.then i downloaded 2.6.13 kernel as told in the readme text attached with the driver(Sis190.c) which had to be compiled......
***********************************
Readne text that came with sis190.c file(driver)

1. Install Fedora Core 3. (Currently only FC3 can be installed on 965 demo board.)

2. Download Linux kernel 2.6.9 or latter version from http://www.kernel.org. The follwing examples are based on linux-2.6.9.

3. copy the kernel source to the location /usr/src/linux-2.6.9.

4. cp sis190.c /usr/src/linux-2.6.9/drivers/net

5. Edit the file "/usr/src/linux-2.6.9/drivers/net/Kconfig".
a. Serach for the string "config SIS900"
b. Add the following item below the item of SIS190.

config SIS190
tristate "SiS 191/190 PCI Gigabit/Fast Ethernet Adapter support"
depends on NET_PCI && PCI
select CRC32
---help---
Say Y here if you have a SiS 191/190 PCI Gigabit/Fast Ethernet adapter.

To compile this driver as a module, choose M here: the module
will be called sis190. This is recommended.

6. Edit the file "/usr/src/linux-2.6.9/drivers/net/Makefile".
a. Search for the string "obj-$(CONFIG_SIS900) += sis900.o".
b. Insert "obj-$(CONFIG_SIS190) += sis190.o" to next line.

7. cd /usr/src/linux-2.6.9

8. Input the command 'make menuconfig'. Then the Linux Kernel configuration menu will be popped.
a. Select "Device Drivers -->", "Networking support -->", "Ethernet (10 or 100Mbit) -->".
b. Goto the item "SiS191/190 PCI Gigabit/Fast Ethernet Adapter support".
c. Press space key to make this item marked with <M>.
d. Save and exit the kernel configuration menu.

9. Make kernel and modules. Input the command 'make bzImage modules modules_install install'.

10. Reboot and Select the boot item "2.6.9".


Then the kernel was installed and driver was also installed.Now netwok card was identified by the kernel 2.6.13 and i was able to ping different sites.
But i was not able to browse using Mozilla as nothing came whenever i gave url in the browser.

I'am posting you some of the outputs which i got......
see everything in detail....I don't know why Tcp-ip packet sending is denied....
I also heard that fedora stopped the support for Sis190 whereas redhat had that......is it so?????

to be contd........

Gejoe
 
Old 09-29-2005, 04:48 AM   #2
/bin/bash
Senior Member
 
Registered: Jul 2003
Location: Indiana
Distribution: Mandrake Slackware-current QNX4.25
Posts: 1,802

Rep: Reputation: 47
Quote:
Then the kernel was installed and driver was also installed.Now netwok card was identified by the kernel 2.6.13 and i was able to ping different sites.
But i was not able to browse using Mozilla as nothing came whenever i gave url in the browser.
That sounds like a DNS problem. Look in /etc/resolv.conf and make sure you have a couple nameserver entries e.g.:
nameserver 123.123.123.123
nameserver 123.123.123.124

If that doesn't help post output of ifconfig -a and route.
 
Old 09-29-2005, 08:33 PM   #3
GEJOE DANIEL
Member
 
Registered: Aug 2005
Posts: 81

Original Poster
Rep: Reputation: 15
This is what i got:


[root@Gejoe ~]# dmesg | tail

audit(1127975008.383:131): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket
audit(1127975008.383:132): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket
audit(1127975068.398:133): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket
audit(1127975068.398:134): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket
audit(1127975068.398:135): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket
audit(1127975068.398:136): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket
audit(1127975068.398:137): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket
audit(1127975068.398:138): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket
audit(1127975068.398:139): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket
audit(1127975068.398:140): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_ubject_r:http_port_t tclass=tcp_socket


part-2

[root@Gejoe ~]# ping www.yahoo.com
PING www.yahoo.akadns.net (66.94.230.50) 56(84) bytes of data.
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=0 ttl=45 time=582 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=3 ttl=45 time=595 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=4 ttl=45 time=622 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=5 ttl=45 time=602 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=6 ttl=45 time=575 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=7 ttl=45 time=634 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=8 ttl=45 time=624 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=9 ttl=45 time=622 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=10 ttl=45 time=649 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=11 ttl=45 time=614 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=12 ttl=45 time=620 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=14 ttl=45 time=624 ms
64 bytes from p19.www.scd.yahoo.com (66.94.230.50): icmp_seq=15 ttl=45 time=632 ms

--- www.yahoo.akadns.net ping statistics ---
17 packets transmitted, 13 received, 23% packet loss, time 18253ms
rtt min/avg/max/mdev = 575.911/615.489/649.571/20.152 ms, pipe 2
(Ctrl+C pressed)


to be contd...
 
Old 09-29-2005, 08:35 PM   #4
GEJOE DANIEL
Member
 
Registered: Aug 2005
Posts: 81

Original Poster
Rep: Reputation: 15
contd....
[root@Gejoe ~]# ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:118:AF:3CE
inet addr:192.168.27.95 Bcast:192.168.31.255 Mask:255.255.248.0
inet6 addr: fe80::211:d8ff:feaf:3cde/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:37366 errors:0 dropped:0 overruns:0 frame:0
TX packets:354 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2914318 (2.7 MiB) TX bytes:33168 (32.3 KiB)
Interrupt:5 Base address:0xcc00

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:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)

sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
to be contd....


Gejoe d
 
Old 09-29-2005, 08:39 PM   #5
GEJOE DANIEL
Member
 
Registered: Aug 2005
Posts: 81

Original Poster
Rep: Reputation: 15
contd......

[root@Gejoe ~]# dmesg

.627:67): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973673.651:68): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973673.651:69): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973673.651:70): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973673.655:71): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973733.991:72): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973733.991:73): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973733.991:74): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973733.991:75): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973734.191:76): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973734.191:77): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973734.191:78): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973734.191:79): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973794.207:80): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973794.343:81): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973794.343:82): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973794.343:83): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973794.347:84): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973794.347:85): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973794.347:86): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973794.347:87): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973799.179:88): avc: denied { name_connect } for pid=4294 comm="firefox-bin" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973808.900:89): avc: denied { name_connect } for pid=4294 comm="firefox-bin" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973843.210:90): avc: denied { name_connect } for pid=4322 comm="telnet" dest=23 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:reserved_port_t tclass=tcp_socket
audit(1127973854.358:91): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973854.358:92): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973854.358:93): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973854.358:94): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973854.382:95): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973854.382:96): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973854.382:97): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127973854.382:98): avc: denied { name_connect } for pid=4222 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974884.539:99): avc: denied { name_connect } for pid=4606 comm="eggcups" dest=631 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:reserved_port_t tclass=tcp_socket
audit(1127974884.539:100): avc: denied { name_connect } for pid=4607 comm="eggcups" dest=631 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:reserved_port_t tclass=tcp_socket
audit(1127974888.275:101): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.275:102): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.275:103): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.275:104): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.279:105): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.279:106): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.279:107): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.279:108): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.335:109): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.335:110): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.335:111): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.335:112): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.339:113): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.339:114): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.339:115): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974888.339:116): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974948.347:117): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974948.347:118): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974948.347:119): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974948.347:120): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974948.355:121): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974948.355:122): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974948.355:123): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127974948.355:124): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
pnp: Device 00:08 activated.


to be contd....
 
Old 09-29-2005, 08:40 PM   #6
GEJOE DANIEL
Member
 
Registered: Aug 2005
Posts: 81

Original Poster
Rep: Reputation: 15
last post now....

contd...


parport: PnPBIOS parport detected.
pnp: Device 00:08 disabled.
USB Universal Host Controller Interface driver v2.3
3c501: Unknown parameter `'
sis900: Unknown parameter `irq'
audit(1127975008.371:125): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975008.371:126): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975008.371:127): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975008.371:128): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975008.383:129): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975008.383:130): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975008.383:131): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975008.383:132): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975068.398:133): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975068.398:134): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975068.398:135): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975068.398:136): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975068.398:137): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975068.398:138): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975068.398:139): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975068.398:140): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975128.450:141): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975128.450:142): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975128.450:143): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975128.450:144): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975128.462:145): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975128.466:146): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975128.466:147): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket
audit(1127975128.466:148): avc: denied { name_connect } for pid=4611 comm="rhn-applet-gui" dest=80 scontext=root:system_r:unconfined_t tcontext=system_u:object_r:http_port_t tclass=tcp_socket


Please help me........
Note that iam able to ping......
but not able to browse the net.......



Gejoe Daniel
 
Old 09-30-2005, 10:06 AM   #7
/bin/bash
Senior Member
 
Registered: Jul 2003
Location: Indiana
Distribution: Mandrake Slackware-current QNX4.25
Posts: 1,802

Rep: Reputation: 47
Perhaps you should turn off rhn-applet-gui. Do you get the same results as root or any other user?

What if you do this:
lynx -dump http://www.kernel.org/kdist/finger_banner

You should see something like this:
Code:
The latest stable version of the Linux kernel is:           2.6.13.2
The latest prepatch for the stable Linux kernel tree is:    2.6.14-rc2
The latest snapshot for the stable Linux kernel tree is:    2.6.14-rc2-git8
The latest 2.4 version of the Linux kernel is:              2.4.31
The latest prepatch for the 2.4 Linux kernel tree is:       2.4.32-rc1
The latest 2.2 version of the Linux kernel is:              2.2.26
The latest prepatch for the 2.2 Linux kernel tree is:       2.2.27-rc2
The latest 2.0 version of the Linux kernel is:              2.0.40
The latest -ac patch to the stable Linux kernels is:        2.6.11-ac7
The latest -mm patch to the stable Linux kernels is:        2.6.14-rc2-mm2
Also how do you connect to internet and what is the result of these commands:
route
lsmod
/sbin/iptables -L -n
 
Old 10-01-2005, 12:12 AM   #8
GEJOE DANIEL
Member
 
Registered: Aug 2005
Posts: 81

Original Poster
Rep: Reputation: 15
This is what i got as root user.I did everything only as the root user:

[root@Gejoe ~]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:11:D8:AF:3C:DE
inet addr:192.168.27.95 Bcast:192.168.27.255 Mask:255.255.255.0
inet6 addr: fe80::211:d8ff:feaf:3cde/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:19368 errors:1 dropped:0 overruns:0 frame:2
TX packets:9 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1828130 (1.7 MiB) TX bytes:546 (546.0 b)
Interrupt:5 Base address:0xcc00

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:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)

[root@Gejoe ~]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.27.0 * 255.255.255.0 U 0 0 0 eth0
169.254.0.0 * 255.255.0.0 U 0 0 0 eth0


; generated by /sbin/dhclient-script
search karunya.ac.in
nameserver 210.212.244.3
nameserver 61.1.192.65
nameserver 61.0.0.6
~
~

[root@Gejoe ~]# /sbin/iptables -L -n
Chain INPUT (policy ACCEPT)
target prot opt source destination
RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0

Chain FORWARD (policy ACCEPT)
target prot opt source destination
RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0

Chain OUTPUT (policy ACCEPT)
target prot opt source destination

Chain RH-Firewall-1-INPUT (2 references)
target prot opt source destination
ACCEPT all -- 0.0.0.0/0 0.0.0.0/0
ACCEPT icmp -- 0.0.0.0/0 0.0.0.0/0 icmp type 255
ACCEPT esp -- 0.0.0.0/0 0.0.0.0/0
ACCEPT ah -- 0.0.0.0/0 0.0.0.0/0
ACCEPT udp -- 0.0.0.0/0 224.0.0.251 udp dpt:5353
ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 udp dpt:631
ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED
REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
 
Old 10-01-2005, 03:54 AM   #9
/bin/bash
Senior Member
 
Registered: Jul 2003
Location: Indiana
Distribution: Mandrake Slackware-current QNX4.25
Posts: 1,802

Rep: Reputation: 47
Quote:
What if you do this:
lynx -dump http://www.kernel.org/kdist/finger_banner

Also how do you connect to internet and what is the result of these commands:
route
lsmod
/sbin/iptables -L -n
 
Old 10-02-2005, 08:30 AM   #10
GEJOE DANIEL
Member
 
Registered: Aug 2005
Posts: 81

Original Poster
Rep: Reputation: 15
Quote:
What if you do this:
lynx -dump http://www.kernel.org/kdist/finger_banner

Also how do you connect to internet and what is the result of these commands:
route
lsmod
/sbin/iptables -L -n



i didn't understand this..
i already posted the outputs of route and lsmode and /sbin/iptables -L -n
when i gave lynx -dump it showed that command not found...
what else to do>???
 
Old 10-02-2005, 07:10 PM   #11
/bin/bash
Senior Member
 
Registered: Jul 2003
Location: Indiana
Distribution: Mandrake Slackware-current QNX4.25
Posts: 1,802

Rep: Reputation: 47
OK, you never answered how do you connect to the internet. The reason I ask is because your route output looks odd.
route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.27.0 * 255.255.255.0 U 0 0 0 eth0
169.254.0.0 * 255.255.0.0 U 0 0 0 eth0

Also I don't see where you posted output to
lsmod

Try
links -dump http://www.kernel.org/kdist/finger_banner
or
curl http://www.kernel.org/kdist/finger_banner

Also can you ping your DNS servers?

Last edited by /bin/bash; 10-02-2005 at 07:12 PM.
 
Old 10-03-2005, 02:56 AM   #12
GEJOE DANIEL
Member
 
Registered: Aug 2005
Posts: 81

Original Poster
Rep: Reputation: 15
i connect to net thro our college lan......
i'll give you the output of lsmod and others soon....
 
Old 10-03-2005, 04:49 AM   #13
/bin/bash
Senior Member
 
Registered: Jul 2003
Location: Indiana
Distribution: Mandrake Slackware-current QNX4.25
Posts: 1,802

Rep: Reputation: 47
Quote:
i connect to net thro our college lan......
If this is your college lan 192.168.27.0 * 255.255.255.0 U 0 0 0 eth0 then you might try something like this:
# route add default gw 192.168.27.1

If that doesn't fix it then remove the route like this
# route del default gw 192.168.27.1

BTW what is the other route to?
169.254.0.0 * 255.255.0.0 U 0 0 0 eth0
 
Old 10-03-2005, 04:57 AM   #14
/bin/bash
Senior Member
 
Registered: Jul 2003
Location: Indiana
Distribution: Mandrake Slackware-current QNX4.25
Posts: 1,802

Rep: Reputation: 47
It's possible that you need to set up your browser to use a proxy. Ask someone in the IT department or look on your college's web site for details.
 
Old 10-12-2005, 07:07 AM   #15
GEJOE DANIEL
Member
 
Registered: Aug 2005
Posts: 81

Original Poster
Rep: Reputation: 15
output of lsmod:

Module Size Used by
autofs4 34308 0
i2c_dev 12416 0
i2c_core 23040 1 i2c_dev
ipt_REJECT 6144 1
ipt_state 2176 1
ip_conntrack 44344 1 ipt_state
iptable_filter 3200 1
ip_tables 24064 3 ipt_REJECT,ipt_state,iptable_filter
vfat 14720 6
fat 58140 1 vfat
dm_mod 63772 0
video 16004 0
button 6800 0
battery 9604 0
ac 5124 0
ipv6 289728 10
ohci_hcd 27908 0
ehci_hcd 43400 0
snd_intel8x0 36288 2
snd_ac97_codec 82684 1 snd_intel8x0
snd_pcm_oss 55200 0
snd_mixer_oss 19712 2 snd_pcm_oss
snd_pcm 110344 3 snd_intel8x0,snd_ac97_codec,snd_pcm_oss
snd_timer 36612 1 snd_pcm
snd 63876 8 snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer
soundcore 12384 2 snd
snd_page_alloc 11016 2 snd_intel8x0,snd_pcm
sis190 20100 0
floppy 68084 0
ext3 141960 1
jbd 95896 1 ext3
ata_piix 9732 0
libata 50436 1 ata_piix
sd_mod 21376 0
scsi_mod 153704 2 libata,sd_mod
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Ethernet driver problem in FC3-part 2 GEJOE DANIEL Linux - Hardware 1 09-29-2005 12:17 PM
Ethernet driver problem in FC3-part 3 GEJOE DANIEL Linux - Hardware 1 09-29-2005 12:16 PM
Problem finding ethernet driver/module merpal Linux - Networking 6 04-14-2005 08:19 PM
Ethernet Driver Problem Warrioruw Linux - Networking 1 12-08-2004 12:06 PM
Multiple ethernet cards, same driver - problem anand_h Linux - Networking 1 02-19-2002 03:01 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 01:30 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration