[SOLVED] Wireless problems - no DNS due to shorewall rules

[SOLVED] Wireless problems - no DNS due to shorewall rules

Postby gwyn » Jun 11th, '13, 11:34

I have just installed Mageia 3 gnome version. I have a broadcom wireless controller: Broadcom Corporation BCM43224 802.11a/b/g/n (rev 01), so I installed broadcom-wl driver via Install & Remove Programmes.

My computer now connects to the router wirelessly but I don't have internet access. If I plug the computer into the wireless router with an ethernet cable, I do have internet access. So the router connects to the modem no problem, and the computer can connect to the router without a cable, but I can't access the internet via wireless (i.e. without a cable connecting router and computer).

I have configured the router (Netgear N150) following the instruction manual. I can't see any problem

Can anyone help?
Gwyn
Last edited by gwyn on Jun 15th, '13, 07:03, edited 1 time in total.
gwyn
 
Posts: 11
Joined: Jun 9th, '13, 09:42

Re: Wireless problems

Postby tom_ » Jun 11th, '13, 15:57

login in a console as root and show us the output of these commands:

Code: Select all
ping www.google.com
ifconfig
route
tom_
 
Posts: 423
Joined: Sep 3rd, '11, 12:26
Location: Porto Ercole, Italy

Re: Wireless problems

Postby gwyn » Jun 12th, '13, 11:15

Here you go.

Code: Select all
[root@localhost gwyn]# ping www.google.com
ping: unknown host www.google.com


[root@localhost gwyn]# ifconfig
eth0      Link encap:Ethernet  HWaddr F0:DE:F1:68:54:49 
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:3120 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2486 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:3311191 (3.1 MiB)  TX bytes:268870 (262.5 KiB)

eth1      Link encap:Ethernet  HWaddr AC:81:12:3E:21:1A 
          inet addr:192.168.1.4  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::ae81:12ff:fe3e:211a/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:54 errors:0 dropped:0 overruns:0 frame:452
          TX packets:9 errors:6 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:2832 (2.7 KiB)  TX bytes:1130 (1.1 KiB)
          Interrupt:19

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:65536  Metric:1
          RX packets:974 errors:0 dropped:0 overruns:0 frame:0
          TX packets:974 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:89244 (87.1 KiB)  TX bytes:89244 (87.1 KiB)

[root@localhost gwyn]# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.1.1     0.0.0.0         UG    0      0        0 eth1
192.168.1.0     *               255.255.255.0   U     0      0        0 eth1
[root@localhost gwyn]#
gwyn
 
Posts: 11
Joined: Jun 9th, '13, 09:42

Re: Wireless problems

Postby tom_ » Jun 12th, '13, 14:20

Code: Select all
[root@localhost gwyn]# ping www.google.com
ping: unknown host www.google.com


this means that your machine is unable to convert a name in an IP,
i.e. you have some problem with DNS;
or your access point is not sending them,
or they are not reacheable.

if you type
Code: Select all
dmesg

you should see the DNS settings your PC received from the access point

you could also add a line like
Code: Select all
nameserver 8.8.8.8

to your
Code: Select all
/etc/resolv.conf



Code: Select all
[root@localhost gwyn]# ifconfig

eth1      Link encap:Ethernet  HWaddr AC:81:12:3E:21:1A 
          inet addr:192.168.1.4  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::ae81:12ff:fe3e:211a/64 Scope:Link


you are connected on this interface, so eth1 should be your wireless
you have an ipv4 and an ipv6 address (which is fine),
but sometimes this brings some problem; you could try to disable ipv6.

Code: Select all
[root@localhost gwyn]# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.1.1     0.0.0.0         UG    0      0        0 eth1
192.168.1.0     *               255.255.255.0   U     0      0        0 eth1


this seems fine.
tom_
 
Posts: 423
Joined: Sep 3rd, '11, 12:26
Location: Porto Ercole, Italy

Re: Wireless problems

Postby gwyn » Jun 13th, '13, 09:32

Dmesg got me lines and lines of this:

Code: Select all
1
[  962.318199] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8192 DF PROTO=UDP SPT=45572 DPT=53 LEN=40
[  962.318214] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8193 DF PROTO=UDP SPT=45572 DPT=53 LEN=40
[  962.318692] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8192 DF PROTO=UDP SPT=59376 DPT=53 LEN=46
[  962.318706] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8193 DF PROTO=UDP SPT=59376 DPT=53 LEN=46
[  962.319203] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8193 DF PROTO=UDP SPT=57983 DPT=53 LEN=40
[  962.319218] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8194 DF PROTO=UDP SPT=57983 DPT=53 LEN=40
[  962.659623] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=8533 DF PROTO=UDP SPT=33406 DPT=53 LEN=48
[  962.659686] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=8534 DF PROTO=UDP SPT=33406 DPT=53 LEN=48
[  962.660323] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=8534 DF PROTO=UDP SPT=51396 DPT=53 LEN=49
[  962.660348] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=8535 DF PROTO=UDP SPT=51396 DPT=53 LEN=49
[  962.661044] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=8535 DF PROTO=UDP SPT=53624 DPT=53 LEN=42
[  962.661075] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=8536 DF PROTO=UDP SPT=53624 DPT=53 LEN=42
[  962.661738] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8536 DF PROTO=UDP SPT=33446 DPT=53 LEN=46
[  962.661760] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8537 DF PROTO=UDP SPT=33446 DPT=53 LEN=46
[  962.662372] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=8536 DF PROTO=UDP SPT=33784 DPT=53 LEN=41
[  962.662399] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=8537 DF PROTO=UDP SPT=33784 DPT=53 LEN=41
[  962.663104] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8537 DF PROTO=UDP SPT=36716 DPT=53 LEN=40
[  962.663130] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8538 DF PROTO=UDP SPT=36716 DPT=53 LEN=40
[  962.663644] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8537 DF PROTO=UDP SPT=57000 DPT=53 LEN=46
[  962.663670] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8538 DF PROTO=UDP SPT=57000 DPT=53 LEN=46
[  962.664319] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8538 DF PROTO=UDP SPT=40864 DPT=53 LEN=40
[  962.664345] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8539 DF PROTO=UDP SPT=40864 DPT=53 LEN=40
[  962.727064] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=8601 DF PROTO=UDP SPT=38079 DPT=53 LEN=48
[  962.727107] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=8602 DF PROTO=UDP SPT=38079 DPT=53 LEN=48
[  962.727781] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=8602 DF PROTO=UDP SPT=37262 DPT=53 LEN=42
[  962.727799] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=8603 DF PROTO=UDP SPT=37262 DPT=53 LEN=42
[  962.728333] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=8602 DF PROTO=UDP SPT=50997 DPT=53 LEN=49
[  962.728349] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=8603 DF PROTO=UDP SPT=50997 DPT=53 LEN=49
[  962.729276] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8603 DF PROTO=UDP SPT=32948 DPT=53 LEN=46
[  962.729299] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8604 DF PROTO=UDP SPT=32948 DPT=53 LEN=46
[  962.729946] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=8604 DF PROTO=UDP SPT=51060 DPT=53 LEN=41
[  962.729964] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=8605 DF PROTO=UDP SPT=51060 DPT=53 LEN=41
[  962.730497] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8604 DF PROTO=UDP SPT=34829 DPT=53 LEN=40
[  962.730512] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8605 DF PROTO=UDP SPT=34829 DPT=53 LEN=40
[  962.731185] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8605 DF PROTO=UDP SPT=55263 DPT=53 LEN=46
[  962.731206] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8606 DF PROTO=UDP SPT=55263 DPT=53 LEN=46
[  962.731748] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8606 DF PROTO=UDP SPT=33815 DPT=53 LEN=40
[  962.731763] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8607 DF PROTO=UDP SPT=33815 DPT=53 LEN=40
[  963.056877] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=8931 DF PROTO=UDP SPT=36370 DPT=53 LEN=48
[  963.056911] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=8932 DF PROTO=UDP SPT=36370 DPT=53 LEN=48
[  963.057497] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=8932 DF PROTO=UDP SPT=44720 DPT=53 LEN=42
[  963.057513] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=8933 DF PROTO=UDP SPT=44720 DPT=53 LEN=42
[  963.057999] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8932 DF PROTO=UDP SPT=35574 DPT=53 LEN=46
[  963.058014] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8933 DF PROTO=UDP SPT=35574 DPT=53 LEN=46
[  963.058533] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=8933 DF PROTO=UDP SPT=49379 DPT=53 LEN=49
[  963.058547] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=8934 DF PROTO=UDP SPT=49379 DPT=53 LEN=49
[  963.059032] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=8933 DF PROTO=UDP SPT=35318 DPT=53 LEN=41
[  963.059046] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=8934 DF PROTO=UDP SPT=35318 DPT=53 LEN=41
[  963.059562] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8934 DF PROTO=UDP SPT=55028 DPT=53 LEN=40
[  963.059576] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8935 DF PROTO=UDP SPT=55028 DPT=53 LEN=40
[  963.060052] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8934 DF PROTO=UDP SPT=46289 DPT=53 LEN=46
[  963.060066] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=8935 DF PROTO=UDP SPT=46289 DPT=53 LEN=46
[  963.060571] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8935 DF PROTO=UDP SPT=51230 DPT=53 LEN=40
[  963.060584] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8936 DF PROTO=UDP SPT=51230 DPT=53 LEN=40
[  963.131250] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9006 DF PROTO=UDP SPT=50240 DPT=53 LEN=48
[  963.131284] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9007 DF PROTO=UDP SPT=50240 DPT=53 LEN=48
[  963.131823] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9006 DF PROTO=UDP SPT=40992 DPT=53 LEN=49
[  963.131838] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9007 DF PROTO=UDP SPT=40992 DPT=53 LEN=49
[  963.132369] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9007 DF PROTO=UDP SPT=52454 DPT=53 LEN=46
[  963.132384] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9008 DF PROTO=UDP SPT=52454 DPT=53 LEN=46
[  963.132871] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9007 DF PROTO=UDP SPT=43247 DPT=53 LEN=42
[  963.132885] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9008 DF PROTO=UDP SPT=43247 DPT=53 LEN=42
[  963.133392] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9008 DF PROTO=UDP SPT=33342 DPT=53 LEN=41
[  963.133406] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9009 DF PROTO=UDP SPT=33342 DPT=53 LEN=41
[  963.133884] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9008 DF PROTO=UDP SPT=42257 DPT=53 LEN=40
[  963.133897] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9009 DF PROTO=UDP SPT=42257 DPT=53 LEN=40
[  963.134419] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9009 DF PROTO=UDP SPT=49734 DPT=53 LEN=46
[  963.134435] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9010 DF PROTO=UDP SPT=49734 DPT=53 LEN=46
[  963.134913] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9009 DF PROTO=UDP SPT=35105 DPT=53 LEN=40
[  963.134927] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9010 DF PROTO=UDP SPT=35105 DPT=53 LEN=40
[  963.465935] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9341 DF PROTO=UDP SPT=51884 DPT=53 LEN=48
[  963.465969] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9342 DF PROTO=UDP SPT=51884 DPT=53 LEN=48
[  963.466464] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9341 DF PROTO=UDP SPT=40581 DPT=53 LEN=49
[  963.466479] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9342 DF PROTO=UDP SPT=40581 DPT=53 LEN=49
[  963.466992] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9342 DF PROTO=UDP SPT=56245 DPT=53 LEN=46
[  963.467007] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9343 DF PROTO=UDP SPT=56245 DPT=53 LEN=46
[  963.467452] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9342 DF PROTO=UDP SPT=57137 DPT=53 LEN=42
[  963.467466] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9343 DF PROTO=UDP SPT=57137 DPT=53 LEN=42
[  963.467905] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9343 DF PROTO=UDP SPT=49893 DPT=53 LEN=41
[  963.467919] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9344 DF PROTO=UDP SPT=49893 DPT=53 LEN=41
[  963.468357] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9343 DF PROTO=UDP SPT=59355 DPT=53 LEN=40
[  963.468371] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9344 DF PROTO=UDP SPT=59355 DPT=53 LEN=40
[  963.468810] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9344 DF PROTO=UDP SPT=49112 DPT=53 LEN=46
[  963.468823] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9345 DF PROTO=UDP SPT=49112 DPT=53 LEN=46
[  963.469247] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9344 DF PROTO=UDP SPT=35096 DPT=53 LEN=40
[  963.469260] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9345 DF PROTO=UDP SPT=35096 DPT=53 LEN=40
[  963.531871] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9407 DF PROTO=UDP SPT=45939 DPT=53 LEN=48
[  963.531904] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9408 DF PROTO=UDP SPT=45939 DPT=53 LEN=48
[  963.532409] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9407 DF PROTO=UDP SPT=50480 DPT=53 LEN=42
[  963.532424] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9408 DF PROTO=UDP SPT=50480 DPT=53 LEN=42
[  963.532950] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9408 DF PROTO=UDP SPT=48658 DPT=53 LEN=49
[  963.532965] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9409 DF PROTO=UDP SPT=48658 DPT=53 LEN=49
[  963.533411] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9408 DF PROTO=UDP SPT=37101 DPT=53 LEN=46
[  963.533425] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9409 DF PROTO=UDP SPT=37101 DPT=53 LEN=46
[  963.533962] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9409 DF PROTO=UDP SPT=41263 DPT=53 LEN=41
[  963.533976] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9410 DF PROTO=UDP SPT=41263 DPT=53 LEN=41
[  963.534412] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9409 DF PROTO=UDP SPT=42386 DPT=53 LEN=40
[  963.534426] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9410 DF PROTO=UDP SPT=42386 DPT=53 LEN=40
[  963.534932] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9410 DF PROTO=UDP SPT=60354 DPT=53 LEN=46
[  963.534946] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9411 DF PROTO=UDP SPT=60354 DPT=53 LEN=46
[  963.535383] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9410 DF PROTO=UDP SPT=55401 DPT=53 LEN=40
[  963.535397] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9411 DF PROTO=UDP SPT=55401 DPT=53 LEN=40
[  963.875274] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9751 DF PROTO=UDP SPT=46446 DPT=53 LEN=48
[  963.875307] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9752 DF PROTO=UDP SPT=46446 DPT=53 LEN=48
[  963.875802] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9751 DF PROTO=UDP SPT=36880 DPT=53 LEN=46
[  963.875817] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9752 DF PROTO=UDP SPT=36880 DPT=53 LEN=46
[  963.876291] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9752 DF PROTO=UDP SPT=39224 DPT=53 LEN=42
[  963.876307] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9753 DF PROTO=UDP SPT=39224 DPT=53 LEN=42
[  963.876808] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9752 DF PROTO=UDP SPT=37789 DPT=53 LEN=49
[  963.876822] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9753 DF PROTO=UDP SPT=37789 DPT=53 LEN=49
[  963.877286] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9753 DF PROTO=UDP SPT=35631 DPT=53 LEN=41
[  963.877300] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9754 DF PROTO=UDP SPT=35631 DPT=53 LEN=41
[  963.877731] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9753 DF PROTO=UDP SPT=46802 DPT=53 LEN=40
[  963.877746] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9754 DF PROTO=UDP SPT=46802 DPT=53 LEN=40
[  963.878192] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9754 DF PROTO=UDP SPT=50994 DPT=53 LEN=46
[  963.878206] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9755 DF PROTO=UDP SPT=50994 DPT=53 LEN=46
[  963.878715] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9754 DF PROTO=UDP SPT=38041 DPT=53 LEN=40
[  963.878729] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9755 DF PROTO=UDP SPT=38041 DPT=53 LEN=40
[  963.947814] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9823 DF PROTO=UDP SPT=57003 DPT=53 LEN=48
[  963.947849] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=9824 DF PROTO=UDP SPT=57003 DPT=53 LEN=48
[  963.948438] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9824 DF PROTO=UDP SPT=37914 DPT=53 LEN=42
[  963.948454] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=9825 DF PROTO=UDP SPT=37914 DPT=53 LEN=42
[  963.948942] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9824 DF PROTO=UDP SPT=53537 DPT=53 LEN=46
[  963.948957] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9825 DF PROTO=UDP SPT=53537 DPT=53 LEN=46
[  963.949483] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9825 DF PROTO=UDP SPT=57520 DPT=53 LEN=49
[  963.949497] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=9826 DF PROTO=UDP SPT=57520 DPT=53 LEN=49
[  963.949997] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9826 DF PROTO=UDP SPT=54872 DPT=53 LEN=41
[  963.950012] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=9827 DF PROTO=UDP SPT=54872 DPT=53 LEN=41
[  963.950507] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9826 DF PROTO=UDP SPT=41486 DPT=53 LEN=40
[  963.950521] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9827 DF PROTO=UDP SPT=41486 DPT=53 LEN=40
[  963.951018] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9827 DF PROTO=UDP SPT=39423 DPT=53 LEN=46
[  963.951033] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=9828 DF PROTO=UDP SPT=39423 DPT=53 LEN=46
[  963.951529] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9827 DF PROTO=UDP SPT=48268 DPT=53 LEN=40
[  963.951542] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9828 DF PROTO=UDP SPT=48268 DPT=53 LEN=40
[  964.352751] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=10229 DF PROTO=UDP SPT=60861 DPT=53 LEN=48
[  964.352796] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=10230 DF PROTO=UDP SPT=60861 DPT=53 LEN=48
[  964.353517] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=10230 DF PROTO=UDP SPT=36500 DPT=53 LEN=49
[  964.353565] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=10231 DF PROTO=UDP SPT=36500 DPT=53 LEN=49
[  964.354421] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=10230 DF PROTO=UDP SPT=39860 DPT=53 LEN=42
[  964.354482] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=10231 DF PROTO=UDP SPT=39860 DPT=53 LEN=42
[  964.355258] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=10231 DF PROTO=UDP SPT=36152 DPT=53 LEN=46
[  964.355295] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=10232 DF PROTO=UDP SPT=36152 DPT=53 LEN=46
[  964.356014] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=10232 DF PROTO=UDP SPT=45668 DPT=53 LEN=41
[  964.356046] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=10233 DF PROTO=UDP SPT=45668 DPT=53 LEN=41
[  964.356751] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10233 DF PROTO=UDP SPT=40624 DPT=53 LEN=40
[  964.356786] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10234 DF PROTO=UDP SPT=40624 DPT=53 LEN=40
[  964.357405] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=10233 DF PROTO=UDP SPT=50862 DPT=53 LEN=46
[  964.357432] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=10234 DF PROTO=UDP SPT=50862 DPT=53 LEN=46
[  964.358222] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10234 DF PROTO=UDP SPT=55704 DPT=53 LEN=40
[  964.358256] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10235 DF PROTO=UDP SPT=55704 DPT=53 LEN=40
[  964.697533] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=10574 DF PROTO=UDP SPT=35812 DPT=53 LEN=48
[  964.697566] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=68 TOS=0x00 PREC=0x00 TTL=64 ID=10575 DF PROTO=UDP SPT=35812 DPT=53 LEN=48
[  964.698142] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=10575 DF PROTO=UDP SPT=34568 DPT=53 LEN=42
[  964.698159] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=62 TOS=0x00 PREC=0x00 TTL=64 ID=10576 DF PROTO=UDP SPT=34568 DPT=53 LEN=42
[  964.698671] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=10575 DF PROTO=UDP SPT=53412 DPT=53 LEN=49
[  964.698686] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=69 TOS=0x00 PREC=0x00 TTL=64 ID=10576 DF PROTO=UDP SPT=53412 DPT=53 LEN=49
[  964.699184] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=10576 DF PROTO=UDP SPT=53269 DPT=53 LEN=46
[  964.699197] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=10577 DF PROTO=UDP SPT=53269 DPT=53 LEN=46
[  964.699682] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=10576 DF PROTO=UDP SPT=34255 DPT=53 LEN=41
[  964.699697] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=10577 DF PROTO=UDP SPT=34255 DPT=53 LEN=41
[  964.700200] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10577 DF PROTO=UDP SPT=33062 DPT=53 LEN=40
[  964.700213] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10578 DF PROTO=UDP SPT=33062 DPT=53 LEN=40
[  964.700692] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=10577 DF PROTO=UDP SPT=56021 DPT=53 LEN=46
[  964.700706] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=10578 DF PROTO=UDP SPT=56021 DPT=53 LEN=46
[  964.701185] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10578 DF PROTO=UDP SPT=37312 DPT=53 LEN=40
[  964.701199] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10579 DF PROTO=UDP SPT=37312 DPT=53 LEN=40
[  976.470119] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=22362 DF PROTO=UDP SPT=43278 DPT=53 LEN=46
[  976.470241] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=22362 DF PROTO=UDP SPT=47140 DPT=53 LEN=46
[  976.470319] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=22362 DF PROTO=UDP SPT=37405 DPT=53 LEN=46
[  976.470380] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=22362 DF PROTO=UDP SPT=54731 DPT=53 LEN=46
[root@localhost gwyn]#

[root@localhost gwyn]#


I disabled IPv6 via Network Settings. Using the drop down 'Method' menu, I set it to "Ignore"

I tried adding "nameserver 8.8.8.8" to /etc/resolv.conf. The file said "# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN", but I added a line anyway. I restarted the computer and "nameserver 8.8.8.8" had disappeared.

Anyway, with a computer restart, I still can't access the internet via wirless.

Here's the output of Dmesg with wired internet access:
Code: Select all
[    8.046683] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    8.046685] i915 0000:00:02.0: registered panic notifier
[    8.046889] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    8.056622] acpi device:3a: registered as cooling_device0
[    8.056756] ACPI: Video Device [PEGP] (multi-head: yes  rom: no  post: no)
[    8.056789] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:38/LNXVIDEO:00/input/input5
[    8.057702] acpi device:46: registered as cooling_device1
[    8.057841] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    8.057866] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input6
[    8.057886] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    8.058398] [drm] initializing kernel modesetting (TURKS 0x1002:0x6741 0x17AA:0x21E3).
[    8.058433] [drm] register mmio base: 0xE2600000
[    8.058436] [drm] register mmio size: 131072
[    8.058438] vga_switcheroo: enabled
[    8.058518] ATPX version 1
[    8.708418] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[    8.821811] ATOM BIOS: Lenovo
[    8.821835] [drm] GPU not posted. posting now...
[    8.824856] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    8.824858] radeon 0000:01:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
[    8.826928] [drm] Detected VRAM RAM=1024M, BAR=256M
[    8.826932] [drm] RAM width 128bits DDR
[    8.827018] [TTM] Zone  kernel: Available graphics memory: 1979792 kiB
[    8.827020] [TTM] Initializing pool allocator
[    8.827023] [TTM] Initializing DMA pool allocator
[    8.827048] [drm] radeon: 1024M of VRAM memory ready
[    8.827049] [drm] radeon: 512M of GTT memory ready.
[    8.827067] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    8.827068] [drm] Driver supports precise vblank timestamp query.
[    8.827113] radeon 0000:01:00.0: irq 43 for MSI/MSI-X
[    8.827123] radeon 0000:01:00.0: radeon: using MSI.
[    8.827162] [drm] radeon: irq initialized.
[    8.827166] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    8.827635] [drm] probing gen 2 caps for device 8086:101 = 2/0
[    8.827639] [drm] PCIE gen 2 link speeds already enabled
[    8.827669] [drm] Loading TURKS Microcode
[    8.829730] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[    8.829855] radeon 0000:01:00.0: WB enabled
[    8.829857] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff8801375a4c00
[    8.829859] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff8801375a4c0c
[    8.846504] [drm] ring test on 0 succeeded in 2 usecs
[    8.846569] [drm] ring test on 3 succeeded in 1 usecs
[    8.846918] [drm] ib test on ring 0 succeeded in 0 usecs
[    8.846990] [drm] ib test on ring 3 succeeded in 0 usecs
[    8.847151] [drm] Radeon Display Connectors
[    8.849259] [drm] Internal thermal controller with fan control
[    8.850167] [drm] radeon: power management initialized
[    8.850304] radeon 0000:01:00.0: No connectors reported connected with modes
[    8.850306] [drm] Cannot find any crtc or sizes - going 1024x768
[    8.851182] [drm] fb mappable at 0xC0142000
[    8.851183] [drm] vram apper at 0xC0000000
[    8.851183] [drm] size 3145728
[    8.851184] [drm] fb depth is 24
[    8.851185] [drm]    pitch is 4096
[    8.851260] radeon 0000:01:00.0: fb1: radeondrmfb frame buffer device
[    8.851273] [drm] Initialized radeon 2.29.0 20080528 for 0000:01:00.0 on minor 1
[    8.852326] dracut: Starting plymouth daemon
[   10.129679] sdhci: Secure Digital Host Controller Interface driver
[   10.129682] sdhci: Copyright(c) Pierre Ossman
[   10.130132] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[   10.130136] cdrom: Uniform CD-ROM driver Revision: 3.20
[   10.130248] sr 4:0:0:0: Attached scsi CD-ROM sr0
[   10.132236] ACPI: bus type usb registered
[   10.132268] usbcore: registered new interface driver usbfs
[   10.132286] usbcore: registered new interface driver hub
[   10.133638] usbcore: registered new device driver usb
[   10.137973] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   10.138724] ehci-pci: EHCI PCI platform driver
[   10.138771] ehci-pci 0000:00:1a.0: setting latency timer to 64
[   10.138776] ehci-pci 0000:00:1a.0: EHCI Host Controller
[   10.138783] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[   10.138800] ehci-pci 0000:00:1a.0: debug port 2
[   10.140846] sdhci-pci 0000:04:00.0: SDHCI controller found [1180:e822] (rev 7)
[   10.142699] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[   10.142715] ehci-pci 0000:00:1a.0: irq 16, io mem 0xe270a000
[   10.148291] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[   10.148319] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[   10.148321] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.148324] usb usb1: Product: EHCI Host Controller
[   10.148325] usb usb1: Manufacturer: Linux 3.8.13-desktop-1.mga3 ehci_hcd
[   10.148327] usb usb1: SerialNumber: 0000:00:1a.0
[   10.148425] hub 1-0:1.0: USB hub found
[   10.148429] hub 1-0:1.0: 2 ports detected
[   10.148685] ehci-pci 0000:00:1d.0: setting latency timer to 64
[   10.148689] ehci-pci 0000:00:1d.0: EHCI Host Controller
[   10.148693] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[   10.148707] ehci-pci 0000:00:1d.0: debug port 2
[   10.152608] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[   10.152787] ehci-pci 0000:00:1d.0: irq 23, io mem 0xe2709000
[   10.158319] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[   10.158380] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[   10.158393] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.158394] usb usb2: Product: EHCI Host Controller
[   10.158396] usb usb2: Manufacturer: Linux 3.8.13-desktop-1.mga3 ehci_hcd
[   10.158397] usb usb2: SerialNumber: 0000:00:1d.0
[   10.158497] hub 2-0:1.0: USB hub found
[   10.158500] hub 2-0:1.0: 2 ports detected
[   10.168303] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
[   10.450006] usb 1-1: new high-speed USB device number 2 using ehci-pci
[   10.564284] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[   10.564294] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   10.564695] hub 1-1:1.0: USB hub found
[   10.564860] hub 1-1:1.0: 6 ports detected
[   10.667668] usb 2-1: new high-speed USB device number 2 using ehci-pci
[   10.781947] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[   10.781958] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   10.782202] hub 2-1:1.0: USB hub found
[   10.782326] hub 2-1:1.0: 6 ports detected
[   10.856475] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
[   10.937010] usb 1-1.2: New USB device found, idVendor=046d, idProduct=c31c
[   10.937020] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   10.937026] usb 1-1.2: Product: USB Keyboard
[   10.937030] usb 1-1.2: Manufacturer: Logitech
[   10.955689] usbcore: registered new interface driver usbhid
[   10.955692] usbhid: USB HID core driver
[   10.956472] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input7
[   10.956523] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1a.0-1.2/input0
[   10.958434] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input8
[   10.958474] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1a.0-1.2/input1
[   11.004301] usb 1-1.3: new low-speed USB device number 4 using ehci-pci
[   11.094908] usb 1-1.3: New USB device found, idVendor=09da, idProduct=0006
[   11.094919] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   11.094925] usb 1-1.3: Product: USB Optical Mouse
[   11.094930] usb 1-1.3: Manufacturer: A4Tech
[   11.163017] dracut: Scanning devices sda2 sda6  for LVM logical volumes fedora/swap ubuntu/root
[   11.173061] usb 1-1.5: new high-speed USB device number 5 using ehci-pci
[   11.220859] dracut: inactive '/dev/ubuntu/root' [9.31 GiB] inherit
[   11.220902] dracut: inactive '/dev/ubuntu/swap' [7.45 GiB] inherit
[   11.220932] dracut: inactive '/dev/ubuntu/home' [9.31 GiB] inherit
[   11.225869] dracut: inactive '/dev/fedora/swap' [7.81 GiB] inherit
[   11.225913] dracut: inactive '/dev/fedora/root' [9.78 GiB] inherit
[   11.225942] dracut: inactive '/dev/fedora/home' [9.78 GiB] inherit
[   11.225974] dracut: inactive '/dev/fedora/Everything' [120.00 GiB] inherit
[   11.255879] bio: create slab <bio-1> at 1
[   11.264187] usb 1-1.5: New USB device found, idVendor=04f2, idProduct=b257
[   11.264197] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   11.264203] usb 1-1.5: Product: Integrated Camera
[   11.264208] usb 1-1.5: Manufacturer: Chicony Electronics Co., Ltd.
[   11.337851] usb 2-1.4: new full-speed USB device number 3 using ehci-pci
[   11.427352] usb 2-1.4: New USB device found, idVendor=0a5c, idProduct=217f
[   11.427362] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.427368] usb 2-1.4: Product: Broadcom Bluetooth Device
[   11.427373] usb 2-1.4: Manufacturer: Broadcom Corp
[   11.427377] usb 2-1.4: SerialNumber: EC55F9F414D4
[   11.479045] PM: Marking nosave pages: [mem 0x0009d000-0x000fffff]
[   11.479049] PM: Marking nosave pages: [mem 0xba99f000-0xbaffefff]
[   11.479070] PM: Marking nosave pages: [mem 0xbb000000-0xffffffff]
[   11.479861] PM: Basic memory bitmaps created
[   11.494612] PM: Basic memory bitmaps freed
[   11.494628] video LNXVIDEO:00: Restoring backlight state
[   11.494806] video LNXVIDEO:01: Restoring backlight state
[   11.497411] PM: Starting manual resume from disk
[   11.497415] PM: Hibernation image partition 252:0 present
[   11.497416] PM: Looking for hibernation image.
[   11.499172] PM: Image not found (code -22)
[   11.499177] PM: Hibernation image not present or could not be loaded.
[   11.545563] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[   11.632341] dracut: Checking ext4: /dev/mapper/ubuntu-root
[   11.632386] dracut: issuing e2fsck -a  /dev/mapper/ubuntu-root
[   11.659857] dracut: /dev/mapper/ubuntu-root: clean, 128130/610800 files, 1058440/2441216 blocks
[   11.660929] dracut: Mounting /dev/mapper/ubuntu-root with -o defaults,ro
[   11.726497] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[   11.781471] dracut: Mounted root filesystem /dev/mapper/ubuntu-root
[   12.107170] dracut: Switching root
[   12.108268] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[   12.640222] systemd[1]: systemd 195 running in system mode. (+PAM +LIBWRAP +AUDIT -SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; mageia)
[   12.959338] systemd[1]: Inserted module 'autofs4'
[   12.968418] systemd[1]: Set hostname to <localhost>.
[   13.320473] systemd[1]: Starting Replay Read-Ahead Data...
[   13.330396] systemd[1]: Starting Collect Read-Ahead Data...
[   13.340381] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[   13.340432] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   13.340454] systemd[1]: Starting Login Prompts.
[   13.340509] systemd[1]: Reached target Login Prompts.
[   13.340523] systemd[1]: Starting Remote File Systems.
[   13.340568] systemd[1]: Reached target Remote File Systems.
[   13.340584] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[   13.340633] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[   13.340641] systemd[1]: Starting Delayed Shutdown Socket.
[   13.340694] systemd[1]: Listening on Delayed Shutdown Socket.
[   13.340704] systemd[1]: Starting Encrypted Volumes.
[   13.340739] systemd[1]: Reached target Encrypted Volumes.
[   13.340760] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
[   13.340903] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   13.340919] systemd[1]: Expecting device dev-fedora-swap.device...
[   13.340945] systemd[1]: Expecting device dev-ubuntu-swap.device...
[   13.341018] systemd[1]: Starting udev Kernel Socket.
[   13.341065] systemd[1]: Listening on udev Kernel Socket.
[   13.341108] systemd[1]: Starting udev Control Socket.
[   13.341174] systemd[1]: Listening on udev Control Socket.
[   13.341186] systemd[1]: Expecting device dev-disk-by\x2duuid-87c4f11e\x2ddcab\x2d41cd\x2d805e\x2d031a2fc8d37b.device...
[   13.341215] systemd[1]: Expecting device dev-ubuntu-home.device...
[   13.341241] systemd[1]: Expecting device dev-fedora-Everything.device...
[   13.341275] systemd[1]: Starting Journal Socket.
[   13.341338] systemd[1]: Listening on Journal Socket.
[   13.341354] systemd[1]: Mounting RPC Pipe File System...
[   13.366263] systemd[1]: Starting Configure read-only root support...
[   13.381267] systemd[1]: Started Import network configuration from initramfs.
[   13.381281] systemd[1]: Starting Software RAID Monitor Takeover...
[   13.391218] systemd[1]: Mounting Huge Pages File System...
[   13.406206] systemd[1]: Mounting POSIX Message Queue File System...
[   13.427167] systemd[1]: Mounting Debug File System...
[   13.437202] systemd[1]: Starting udev Coldplug all Devices...
[   13.451190] systemd[1]: Starting Set default kernel console loglevel...
[   13.586991] systemd[1]: Starting Journal Service...
[   13.597035] systemd[1]: Started Journal Service.
[   13.597250] systemd[1]: Starting udev Kernel Device Manager...
[   13.611382] systemd[1]: Started Collect Read-Ahead Data.
[   13.611536] systemd[1]: Started Replay Read-Ahead Data.
[   13.622908] systemd[1]: Started Software RAID Monitor Takeover.
[   13.639070] systemd[1]: Starting Load legacy module configuration...
[   13.648923] systemd[1]: Started File System Check on Root Device.
[   13.648955] systemd[1]: Starting Remount Root and Kernel File Systems...
[   13.659923] systemd[1]: Starting Apply Kernel Variables...
[   14.013223] systemd[1]: Starting Load Kernel Modules...
[   14.025428] systemd[1]: Starting Setup Virtual Console...
[   14.079612] systemd[1]: Started Set Up Additional Binary Formats.
[   14.373102] systemd-udevd[480]: starting version 195
[   14.765589] EXT4-fs (dm-1): re-mounted. Opts: (null)
[   14.990002] RPC: Registered named UNIX socket transport module.
[   14.990005] RPC: Registered udp transport module.
[   14.990006] RPC: Registered tcp transport module.
[   14.990007] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   15.239097] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x15
[   15.251113] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20121018/utaddress-251)
[   15.251121] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.251127] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
[   15.251131] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20121018/utaddress-251)
[   15.251135] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.251137] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
[   15.251140] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20121018/utaddress-251)
[   15.251144] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.251146] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
[   15.251149] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20121018/utaddress-251)
[   15.251153] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.251154] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   15.252667] ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20121018/utaddress-251)
[   15.252680] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.254657] mei 0000:00:16.0: setting latency timer to 64
[   15.254723] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[   15.271798] lib80211: common routines for IEEE802.11 drivers
[   15.271802] lib80211_crypt: registered algorithm 'NULL'
[   15.286860] ACPI: Requesting acpi_cpufreq
[   15.335391] Non-volatile memory driver v1.3
[   15.350685] hdaps: supported laptop not found!
[   15.350689] hdaps: driver init failed (ret=-19)!
[   15.358858] ACPI: AC Adapter [ADP1] (on-line)
[   15.369362] ACPI Error: No handler for Region [ECRM] (ffff880138edd240) [EmbeddedControl] (20121018/evregion-376)
[   15.369368] ACPI Error: Region EmbeddedControl (ID=3) has no handler (20121018/exfldio-305)
[   15.369373] ACPI Error: Method parse/execution failed [\_TZ_.RDEC] (Node ffff88013aa4d4b0), AE_NOT_EXIST (20121018/psparse-537)
[   15.369380] ACPI Error: Method parse/execution failed [\_TZ_.TZS0._TMP] (Node ffff88013aa4d528), AE_NOT_EXIST (20121018/psparse-537)
[   15.369572] ACPI Error: No handler for Region [ECRM] (ffff880138edd168) [EmbeddedControl] (20121018/evregion-376)
[   15.369576] ACPI Error: Region EmbeddedControl (ID=3) has no handler (20121018/exfldio-305)
[   15.369580] ACPI Error: Method parse/execution failed [\_TZ_.RDEC] (Node ffff88013aa4d4b0), AE_NOT_EXIST (20121018/psparse-537)
[   15.369585] ACPI Error: Method parse/execution failed [\_TZ_.TZS0._TMP] (Node ffff88013aa4d528), AE_NOT_EXIST (20121018/psparse-537)
[   15.369779] thermal LNXTHERM:01: registered as thermal_zone0
[   15.369782] ACPI: Thermal Zone [TZS1] (32 C)
[   15.388401] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x15
[   15.392294] wmi: Mapper loaded
[   15.450086] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   15.451038] r8169 0000:03:00.0: irq 45 for MSI/MSI-X
[   15.451207] r8169 0000:03:00.0 eth0: RTL8168e/8111e at 0xffffc9000063c000, f0:de:f1:68:54:49, XID 0c200000 IRQ 45
[   15.451209] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[   15.475599] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x15
[   15.477421] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x15
[   15.478875] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   15.483602] ACPI: Battery Slot [BAT0] (battery present)
[   15.544081] kvm: disabled by bios
[   15.550436] kvm: disabled by bios
[   16.657940] acer_wmi: Acer Laptop ACPI-WMI Extras
[   16.667181] acer_wmi: Brightness must be controlled by acpi video driver
[   16.667210] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   16.667212] thinkpad_acpi: http://ibm-acpi.sf.net/
[   16.667214] thinkpad_acpi: ThinkPad BIOS 8HET30WW(1.12), EC unknown
[   16.667215] thinkpad_acpi: Lenovo ThinkPad E420, model 1141CTO
[   16.668100] input: Acer BMA150 accelerometer as /devices/virtual/input/input9
[   16.668517] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
[   16.668559] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   16.668561] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   16.673127] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   16.673468] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
[   16.673517] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[   16.674294] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input10
[   16.780050] iTCO_vendor_support: vendor-support=0
[   16.848014] wl: module license 'unspecified' taints kernel.
[   16.848018] Disabling lock debugging due to kernel taint
[   17.088800] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[   17.147694] input: A4Tech USB Optical Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input11
[   17.148491] a4tech 0003:09DA:0006.0003: input,hidraw2: USB HID v1.10 Mouse [A4Tech USB Optical Mouse] on usb-0000:00:1a.0-1.3/input0
[   17.290666] lib80211_crypt: registered algorithm 'TKIP'
[   17.290872] eth1: Broadcom BCM0576 802.11 Hybrid Wireless Controller 5.100.82.112
[   17.302872] hda_codec: CX20590: BIOS auto-probing.
[   17.302882] autoconfig: line_outs=1 (0x1f/0x0/0x0/0x0/0x0) type:speaker
[   17.302883]    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.302884]    hp_outs=1 (0x19/0x0/0x0/0x0/0x0)
[   17.302885]    mono: mono_out=0x0
[   17.302885]    inputs:
[   17.302887]      Internal Mic=0x23
[   17.302888]      Mic=0x1b
[   17.303710] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input12
[   17.303752] hda_codec: Enable sync_write for stable communication
[   17.307768] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[   17.307803] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
[   17.307892] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=1)
[   17.559288] media: Linux media interface: v0.10
[   17.564923] Linux video capture interface: v2.00
[   17.572455] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b257)
[   17.575005] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/input/input13
[   17.575061] usbcore: registered new interface driver uvcvideo
[   17.575062] USB Video Class driver (1.1.1)
[   17.655241] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[   17.655304] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[   17.655348] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[   18.203316] Bluetooth: Core ver 2.16
[   18.203332] NET: Registered protocol family 31
[   18.203333] Bluetooth: HCI device and connection manager initialized
[   18.203340] Bluetooth: HCI socket layer initialized
[   18.203342] Bluetooth: L2CAP socket layer initialized
[   18.203346] Bluetooth: SCO socket layer initialized
[   18.205497] usbcore: registered new interface driver btusb
[   18.498586] hdaps: supported laptop not found!
[   18.498589] hdaps: driver init failed (ret=-19)!
[   19.873555] Adding 8191996k swap on /dev/mapper/fedora-swap.  Priority:-1 extents:1 across:8191996k
[   21.083836] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[   24.646749] Adding 7811068k swap on /dev/mapper/ubuntu-swap.  Priority:-2 extents:1 across:7811068k
[   25.331546] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: (null)
[   25.843958] EXT4-fs (dm-6): mounted filesystem with ordered data mode. Opts: (null)
[   26.198490] systemd-journald[478]: Received SIGUSR1
[   29.896499] microcode: CPU0 updated to revision 0x28, date = 2012-04-24
[   29.896980] microcode: CPU1 updated to revision 0x28, date = 2012-04-24
[   29.897451] microcode: CPU2 updated to revision 0x28, date = 2012-04-24
[   29.897976] microcode: CPU3 updated to revision 0x28, date = 2012-04-24
[   29.897980] perf_event_intel: PEBS enabled due to microcode update
[   29.899089] microcode: Microcode Update Driver: v2.00 removed.
[   30.133351] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   30.133355] Bluetooth: BNEP filters: protocol multicast
[   30.133362] Bluetooth: BNEP socket layer initialized
[   30.167696] Bluetooth: RFCOMM TTY layer initialized
[   30.167708] Bluetooth: RFCOMM socket layer initialized
[   30.167710] Bluetooth: RFCOMM ver 1.11
[   30.169552] systemd[1]: mdmonitor.service: control process exited, code=exited status=1
[   30.552484] NET: Registered protocol family 10
[   30.846529] r8169 0000:03:00.0 eth0: link down
[   30.846671] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   30.852564] NET: Registered protocol family 17
[   32.920875] EXT4-fs (dm-1): re-mounted. Opts: commit=0
[   32.958297] EXT4-fs (sda5): re-mounted. Opts: commit=0
[   33.136748] EXT4-fs (dm-3): re-mounted. Opts: commit=0
[   33.140179] EXT4-fs (dm-6): re-mounted. Opts: commit=0
[   33.697761] fuse init (API version 7.20)
[   61.509942] ip_tables: (C) 2000-2006 Netfilter Core Team
[   61.521657] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   61.830086] Netfilter messages via NETLINK v0.30.
[   61.841199] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   61.934208] NF_TPROXY: Transparent proxy support initialized, version 4.1.0
[   61.934212] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
[   61.944807] xt_time: kernel timezone is +1200
[   61.960568] ctnetlink v0.93: registering with nfnetlink.
[   61.989423] ip_set: protocol 6
[   62.026514] ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully
[   62.183691] xt_addrtype: ipv6 does not support BROADCAST matching
[   62.433963] xt_CT: No such helper "pptp"
[   62.444878] xt_CT: No such helper "snmp"
[   62.450829] xt_CT: No such helper "netbios-ns"
[   62.460478] xt_CT: No such helper "irc"
[   62.468345] xt_CT: No such helper "irc-0"
[   62.515690] Bridge firewalling registered
[   62.724544] u32 classifier
[   62.724553]     Actions configured
[   62.872005] netfilter PSD loaded - (c) astaro AG
[   62.874214] IFWLOG: register target
[  141.965997] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=34673 DPT=53 LEN=41
[  141.965998] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=63 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=54744 DPT=53 LEN=43
[  141.965999] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=50235 DPT=53 LEN=41
[  141.966057] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=39117 DPT=53 LEN=41
[  141.966062] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=45983 DPT=53 LEN=41
[  141.966063] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=63 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=52033 DPT=53 LEN=43
[  141.966088] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=45669 DPT=53 LEN=41
[  141.966095] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=63 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=51639 DPT=53 LEN=43
[  141.966096] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=60812 DPT=53 LEN=41
[  141.966105] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=53404 DPT=53 LEN=41
[  141.966124] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=63 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=33454 DPT=53 LEN=43
[  141.966125] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=61 TOS=0x00 PREC=0x00 TTL=64 ID=38746 DF PROTO=UDP SPT=34607 DPT=53 LEN=41
[  142.069728] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=38850 DF PROTO=UDP SPT=46638 DPT=53 LEN=46
[  142.069729] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=63 TOS=0x00 PREC=0x00 TTL=64 ID=38850 DF PROTO=UDP SPT=46294 DPT=53 LEN=43
[  142.069773] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=38850 DF PROTO=UDP SPT=33422 DPT=53 LEN=46
[  142.069773] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=63 TOS=0x00 PREC=0x00 TTL=64 ID=38850 DF PROTO=UDP SPT=49210 DPT=53 LEN=43
[  142.069794] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=63 TOS=0x00 PREC=0x00 TTL=64 ID=38850 DF PROTO=UDP SPT=37768 DPT=53 LEN=43
[  142.069795] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=38850 DF PROTO=UDP SPT=56407 DPT=53 LEN=46
[  142.069810] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=66 TOS=0x00 PREC=0x00 TTL=64 ID=38850 DF PROTO=UDP SPT=58265 DPT=53 LEN=46
[  142.069813] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=63 TOS=0x00 PREC=0x00 TTL=64 ID=38850 DF PROTO=UDP SPT=44449 DPT=53 LEN=43
[  159.696192] r8169 0000:03:00.0 eth0: link up
[  159.696200] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[root@localhost gwyn]#
gwyn
 
Posts: 11
Joined: Jun 9th, '13, 09:42

Re: Wireless problems

Postby srtxg » Jun 13th, '13, 10:02

tom_ wrote:
Code: Select all
[root@localhost gwyn]# ifconfig

eth1      Link encap:Ethernet  HWaddr AC:81:12:3E:21:1A 
          inet addr:192.168.1.4  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::ae81:12ff:fe3e:211a/64 Scope:Link


you are connected on this interface, so eth1 should be your wireless
you have an ipv4 and an ipv6 address (which is fine),
but sometimes this brings some problem; you could try to disable ipv6.


No; the ipv6 is a link local adress (it begins with "fe80::"); link local adresses don't provide "real" ipv6 connectivity, just the ability to see other machines on the same link (think of it as roughly equivalent to arp protocol for ipv4).
Disabling ipv6 won't change anything to his problem which is wrong DNS configuration.

Now, maybe the problem is not in the Mageia box, but on the wireless router (192.168.1.1); is it provinding DNS services? is it connected to the internet?

Various tests to do:
Code: Select all
# test the raw connectivity
ping 192.168.1.1     # test that you can reach the router, Ctrl-C to end it
ping 8.8.8.8    # test that you can reach a machine (8.8.8.8 in this case) on the internet.
# if the test fails, then run this:
/usr/sbin/tracepath 8.8.8.8   # see where on the path is the problem
# if you cannot go further than your router (192.168.1.1) it means your router
# is either not connected or is refusing to route your traffic; router has to be fixed
# if the problem is after the router then you had to report it to your internet provider

# if you can reach 8.8.8.8 by number, then test DNS resolution
grep '^nameserver' /etc/resolv.conf   # will show the name servers you are configured to use
# if you have no output, then you must define one
# if you have an output, eg 192.168.2.53, you need for each of them do the next test
# (use the right ip addresses depending on your config)
dig @192.168.2.53 +short www.mageia.org   # test if the nameserver router resolve names
# you should have a reply giving a numeric IP adress; if not, it means there is no name server
# there or that it is ignoring you or misconfigured; in suchcase you need to use another server

# if none of your configured servers worked you can try with google one (8.8.8.8):
dig @8.8.8.8 +short www.mageia.org
srtxg
 
Posts: 21
Joined: Jun 5th, '13, 11:13

Re: Wireless problems

Postby srtxg » Jun 13th, '13, 10:09

gwyn wrote:Dmesg got me lines and lines of this:

Code: Select all
1
[  962.318199] Shorewall:OUTPUT:REJECT:IN= OUT=eth1 SRC=192.168.1.4 DST=192.168.1.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8192 DF PROTO=UDP SPT=45572 DPT=53 LEN=40



Problem found! :)

your firewall (shorewall) is *rejecting* your (192.168.1.4) DNS requests (destination port 53) to the router (192.168.1.1).
So, no wonder it doesn't work.

I don't know shorewall myself; but what you need is to allow outgoing traffic to port 53.
(or even better, allow *ALL* outgoing traffic from your local network (192.168.1.0/24 or 192.168.1.0 netmask 255.255.255.0 depending on which format shorewall uses for representing adress ranges)

if you cannot find how to properly configure shorewall you can temporarly disable it (as root: systemctl stop shorewall.service).

when it works, change subject of first message to something like: "[SOLVED] no DNS due to shorewall rules"
srtxg
 
Posts: 21
Joined: Jun 5th, '13, 11:13

[SOLVED] Wireless problems - no DNS due to shorewall rules

Postby gwyn » Jun 15th, '13, 07:02

Thank you, srtxg!! Shorewall was indeed the problem. I tried to work out how to modify the shorewall rules file, but I just got confused. So I uninstalled shorewall and reinstalled it, and now I am connected to the internet wirelessly. Excellent!
gwyn
 
Posts: 11
Joined: Jun 9th, '13, 09:42


Return to Networking

Who is online

Users browsing this forum: No registered users and 1 guest

cron