Advertisement
rhowaldt

Untitled

Oct 2nd, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.72 KB | None | 0 0
  1. bbq@grill:~$ su -
  2. Password:
  3. root@grill:~# uname -a
  4. Linux grill 3.5-4.towo.1-siduction-amd64 #1 SMP PREEMPT Sat Sep 29 14:19:43 UTC 2012 x86_64 GNU/Linux
  5. root@grill:~# lspci -knn | grep -i net -A2
  6. 06:00.0 Ethernet controller [0200]: Atheros Communications Inc. AR242x / AR542x Wireless Network Adapter (PCI-Express) [168c:001c] (rev 01)
  7. Subsystem: AzureWave AW-GE780 802.11bg Wireless Mini PCIe Card [1a3b:1026]
  8. Kernel driver in use: ath5k
  9. --
  10. 07:07.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ [10ec:8139] (rev 10)
  11. Subsystem: Packard Bell B.V. Device [1631:c109]
  12. Kernel driver in use: 8139too
  13. root@grill:~# lsusb
  14. Bus 001 Device 003: ID 0bda:0119 Realtek Semiconductor Corp.
  15. Bus 001 Device 004: ID 0402:5602 ALi Corp. M5602 Video Camera Controller
  16. Bus 003 Device 002: ID 046d:c045 Logitech, Inc. Optical Mouse
  17. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  18. Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  19. Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  20. Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  21. Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  22. Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  23. root@grill:~# egrep -v "^$|^#" /etc/network/interfaces
  24. auto lo
  25. iface lo inet loopback
  26. auto eth0
  27. iface eth0 inet static
  28. address 192.168.1.2
  29. broadcast 192.168.1.255
  30. dns-nameservers 8.8.8.8
  31. gateway 192.168.1.1
  32. netmask 255.255.255.0
  33. network 192.168.1.0
  34. allow-hotplug wlan0
  35. iface wlan0 inet dhcp
  36. wpa-psk ****(commented out)****
  37. wpa-ssid DV201AM
  38. root@grill:~# egrep -v "^$|^#" /etc/resolv.conf
  39. nameserver 8.8.8.8
  40. nameserver 192.168.1.1
  41. root@grill:~# egrep -v "^$|^#" /etc/hosts
  42. 127.0.0.1 localhost
  43. 127.0.0.1 grill
  44. ::1 ip6-localhost ip6-loopback
  45. fe00::0 ip6-localnet
  46. ff00::0 ip6-mcastprefix
  47. ff02::1 ip6-allnodes
  48. ff02::2 ip6-allrouters
  49. ff02::3 ip6-allhosts
  50. root@grill:~# cat /etc/udev/rules.d/70-persistent-net.rules
  51.  
  52. # PCI device 0x168c:/sys/devices/pci0000:00/0000:00:07.0/0000:06:00.0 (ath5k)
  53. SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:15:af:31:6a:fa", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"
  54. # This file was automatically generated by the /lib/udev/write_net_rules
  55. # program, run by the persistent-net-generator.rules rules file.
  56. #
  57. # You can modify it, as long as you keep each rule on a single
  58. # line, and change only the value of the NAME= key.
  59.  
  60. # PCI device 0x10ec:/sys/devices/pci0000:00/0000:00:14.4/0000:07:07.0 (8139too)
  61. SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1d:60:58:0a:f4", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
  62. root@grill:~# ifconfig -a
  63. eth0 Link encap:Ethernet HWaddr 00:1d:60:58:0a:f4
  64. inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0
  65. UP BROADCAST MULTICAST MTU:1500 Metric:1
  66. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  67. TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  68. collisions:0 txqueuelen:1000
  69. RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
  70.  
  71. lo Link encap:Local Loopback
  72. inet addr:127.0.0.1 Mask:255.0.0.0
  73. inet6 addr: ::1/128 Scope:Host
  74. UP LOOPBACK RUNNING MTU:16436 Metric:1
  75. RX packets:152 errors:0 dropped:0 overruns:0 frame:0
  76. TX packets:152 errors:0 dropped:0 overruns:0 carrier:0
  77. collisions:0 txqueuelen:0
  78. RX bytes:14440 (14.1 KiB) TX bytes:14440 (14.1 KiB)
  79.  
  80. wlan0 Link encap:Ethernet HWaddr 00:15:af:31:6a:fa
  81. inet addr:192.168.1.7 Bcast:192.168.1.255 Mask:255.255.255.0
  82. inet6 addr: fe80::215:afff:fe31:6afa/64 Scope:Link
  83. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  84. RX packets:5 errors:0 dropped:0 overruns:0 frame:0
  85. TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
  86. collisions:0 txqueuelen:1000
  87. RX bytes:1489 (1.4 KiB) TX bytes:1603 (1.5 KiB)
  88.  
  89. root@grill:~# ip addr
  90. 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
  91. link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  92. inet 127.0.0.1/8 scope host lo
  93. inet6 ::1/128 scope host
  94. valid_lft forever preferred_lft forever
  95. 2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
  96. link/ether 00:1d:60:58:0a:f4 brd ff:ff:ff:ff:ff:ff
  97. inet 192.168.1.2/24 brd 192.168.1.255 scope global eth0
  98. 3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
  99. link/ether 00:15:af:31:6a:fa brd ff:ff:ff:ff:ff:ff
  100. inet 192.168.1.7/24 brd 192.168.1.255 scope global wlan0
  101. inet6 fe80::215:afff:fe31:6afa/64 scope link
  102. valid_lft forever preferred_lft forever
  103. root@grill:~# route -n
  104. Kernel IP routing table
  105. Destination Gateway Genmask Flags Metric Ref Use Iface
  106. 0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
  107. 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
  108. 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 wlan0
  109. root@grill:~# rfkill list
  110. 0: phy0: Wireless LAN
  111. Soft blocked: no
  112. Hard blocked: no
  113. root@grill:~# lsmod
  114. Module Size Used by
  115. cryptd 6713 0
  116. aes_x86_64 7324 3
  117. aes_generic 25890 1 aes_x86_64
  118. af_packet 22083 4
  119. cpufreq_stats 3267 0
  120. cpufreq_powersave 886 0
  121. cpufreq_conservative 4323 0
  122. uinput 6530 1
  123. fuse 56459 1
  124. dm_mod 58721 0
  125. md_mod 87449 0
  126. gspca_m5602 41573 0
  127. gspca_main 17004 1 gspca_m5602
  128. videodev 81181 1 gspca_main
  129. arc4 1258 2
  130. joydev 8583 0
  131. media 8780 1 videodev
  132. radeon 706747 2
  133. ath5k 117421 0
  134. powernow_k8 11924 1
  135. mperf 1189 1 powernow_k8
  136. snd_hda_codec_hdmi 20711 1
  137. kvm 204118 0
  138. snd_hda_codec_realtek 47962 1
  139. ath 13641 1 ath5k
  140. snd_hda_intel 22415 1
  141. mac80211 212526 1 ath5k
  142. snd_hda_codec 71922 3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
  143. psmouse 59590 0
  144. edac_core 29983 0
  145. edac_mce_amd 10701 0
  146. r592 9390 0
  147. memstick 5621 1 r592
  148. sp5100_tco 4064 0
  149. snd_hwdep 5245 1 snd_hda_codec
  150. pcspkr 1784 0
  151. evdev 8242 20
  152. snd_seq 42016 0
  153. serio_raw 4086 0
  154. cfg80211 136351 3 ath,ath5k,mac80211
  155. k8temp 3191 0
  156. i2c_piix4 7789 0
  157. i2c_algo_bit 4369 1 radeon
  158. snd_seq_device 4665 1 snd_seq
  159. snd_pcm 59009 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  160. snd_page_alloc 6057 2 snd_pcm,snd_hda_intel
  161. ttm 52874 1 radeon
  162. snd_timer 15553 2 snd_pcm,snd_seq
  163. drm_kms_helper 21092 1 radeon
  164. video 10791 0
  165. drm 184349 4 ttm,drm_kms_helper,radeon
  166. snd 49725 11 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_hda_codec,snd_hda_intel,snd_seq_device
  167. asus_laptop 16078 0
  168. sparse_keymap 2408 1 asus_laptop
  169. ac 2176 0
  170. battery 6125 0
  171. i2c_core 16650 6 drm,i2c_piix4,drm_kms_helper,i2c_algo_bit,radeon,videodev
  172. rfkill 13128 3 cfg80211,asus_laptop
  173. soundcore 4402 1 snd
  174. input_polldev 2362 1 asus_laptop
  175. button 4225 0
  176. processor 26360 1 powernow_k8
  177. squashfs 23383 1
  178. loop 14469 2
  179. aufs 138452 56
  180. nls_utf8 1208 1
  181. isofs 26921 1
  182. ext4 238339 1
  183. crc16 1287 1 ext4
  184. jbd2 48525 1 ext4
  185. mbcache 4497 1 ext4
  186. hid_generic 1041 0
  187. usbhid 30138 0
  188. hid 71436 2 hid_generic,usbhid
  189. sg 18513 0
  190. sr_mod 12833 0
  191. cdrom 29372 1 sr_mod
  192. sd_mod 30677 4
  193. crc_t10dif 1260 1 sd_mod
  194. usb_storage 39916 1
  195. ata_generic 3095 0
  196. pata_acpi 2952 0
  197. uas 7410 0
  198. thermal 7423 0
  199. firewire_ohci 25741 0
  200. firewire_core 43463 1 firewire_ohci
  201. crc_itu_t 1291 1 firewire_core
  202. sdhci_pci 9670 0
  203. sdhci 19417 1 sdhci_pci
  204. mmc_core 67279 2 sdhci,sdhci_pci
  205. 8139too 17478 0
  206. 8139cp 15427 0
  207. mii 3315 2 8139cp,8139too
  208. pata_atiixp 3779 0
  209. ahci 19489 1
  210. libahci 16219 1 ahci
  211. libata 135388 5 ahci,pata_acpi,libahci,ata_generic,pata_atiixp
  212. scsi_mod 126074 6 sg,uas,usb_storage,libata,sd_mod,sr_mod
  213. ohci_hcd 19348 0
  214. ehci_hcd 35289 0
  215. usbcore 121600 7 uas,usb_storage,ohci_hcd,ehci_hcd,gspca_main,usbhid,gspca_m5602
  216. usb_common 866 1 usbcore
  217. root@grill:~# dmesg | egrep 'net|eth|sky|sis|via|3c3|3c5|e100|8139|8169|acx|air|ath|atl|ar9|carl|atme|at7|herm|iwl|ipw|rtl8|r81|rt2|rt3|rt6|rt7|tg3|ssb|wl|b43|b44|ori|pri|p5|zd|ndis|wmi|ns8|FW'
  218. [ 0.000000] PERCPU: Embedded 26 pages/cpu @ffff88007f000000 s77696 r8192 d20608 u1048576
  219. [ 0.000000] pcpu-alloc: s77696 r8192 d20608 u1048576 alloc=1*2097152
  220. [ 0.000000] Aperture pointing to e820 RAM. Ignoring.
  221. [ 0.008300] Initializing cgroup subsys net_cls
  222. [ 0.153410] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
  223. [ 0.158888] pci 0000:07:07.0: >[10ec:8139] type 00 class 0x020000
  224. [ 0.982375] audit: initializing netlink socket (disabled)
  225. [ 1.153680] 8139cp: 8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004)
  226. [ 1.158650] 8139cp 0000:07:07.0: >This (id 10ec:8139 rev 10) is not an 8139C+ compatible chip, use 8139too
  227. [ 1.163322] 8139too: 8139too Fast Ethernet driver 0.9.28
  228. [ 1.164375] 8139too 0000:07:07.0: >eth0: RealTek RTL8139 at 0xffffc90010be4c00, 00:1d:60:58:0a:f4, IRQ 20
  229. [ 1.250622] thermal LNXTHERM:00: >registered as thermal_zone0
  230. [ 1.250628] ACPI: Thermal Zone [THRM] (51 C)
  231. [ 7.094535] sp5100_tco: SP5100 TCO WatchDog Timer Driver v0.01
  232. [ 7.098423] sp5100_tco: mmio address 0xfec000f0 already in use
  233. [ 7.515523] ath5k 0000:06:00.0: >registered as 'phy0'
  234. [ 8.055645] ath: EEPROM regdomain: 0x60
  235. [ 8.055650] ath: EEPROM indicates we should expect a direct regpair map
  236. [ 8.055655] ath: Country alpha2 being used: 00
  237. [ 8.055657] ath: Regpair used: 0x60
  238. [ 8.089503] ieee80211 phy0: >Selected rate control algorithm 'minstrel_ht'
  239. [ 8.090286] Registered led device: ath5k-phy0::rx
  240. [ 8.090360] Registered led device: ath5k-phy0::tx
  241. [ 8.090391] ath5k: phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70)
  242. [ 8.661794] fbcon: radeondrmfb (fb0) is primary device
  243. [ 13.297452] 8139too 0000:07:07.0: >eth0: link down
  244. [ 13.298078] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
  245. [ 96.114342] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
  246. [ 111.807783] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
  247. [ 113.002871] wlan0: authenticate with 00:23:54:0b:cf:5d
  248. [ 113.008827] wlan0: send auth to 00:23:54:0b:cf:5d (try 1/3)
  249. [ 113.010447] wlan0: authenticated
  250. [ 113.016061] wlan0: associate with 00:23:54:0b:cf:5d (try 1/3)
  251. [ 113.018289] wlan0: RX AssocResp from 00:23:54:0b:cf:5d (capab=0x411 status=0 aid=4)
  252. [ 113.020046] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
  253. [ 113.020172] wlan0: associated
  254. root@grill:~# cat /var/lib/NetworkManager/NetworkManager.state
  255. cat: /var/lib/NetworkManager/NetworkManager.state: No such file or directory
  256. root@grill:~# cat /etc/NetworkManager/NetworkManager.conf
  257. cat: /etc/NetworkManager/NetworkManager.conf: No such file or directory
  258. root@grill:~# nm-tool
  259. -su: nm-tool: command not found
  260. root@grill:~# iwconfig
  261. eth0 no wireless extensions.
  262.  
  263. lo no wireless extensions.
  264.  
  265. wlan0 IEEE 802.11bg ESSID:"DV201AM"
  266. Mode:Managed Frequency:2.412 GHz Access Point: 00:23:54:0B:CF:5D
  267. Bit Rate=1 Mb/s Tx-Power=20 dBm
  268. Retry long limit:7 RTS thr:off Fragment thr:off
  269. Encryption key:off
  270. Power Management:off
  271. Link Quality=64/70 Signal level=-46 dBm
  272. Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
  273. Tx excessive retries:0 Invalid misc:3 Missed beacon:0
  274.  
  275. root@grill:~# iwlist chan
  276. eth0 no frequency information.
  277.  
  278. lo no frequency information.
  279.  
  280. wlan0 14 channels in total; available frequencies :
  281. Channel 01 : 2.412 GHz
  282. Channel 02 : 2.417 GHz
  283. Channel 03 : 2.422 GHz
  284. Channel 04 : 2.427 GHz
  285. Channel 05 : 2.432 GHz
  286. Channel 06 : 2.437 GHz
  287. Channel 07 : 2.442 GHz
  288. Channel 08 : 2.447 GHz
  289. Channel 09 : 2.452 GHz
  290. Channel 10 : 2.457 GHz
  291. Channel 11 : 2.462 GHz
  292. Channel 12 : 2.467 GHz
  293. Channel 13 : 2.472 GHz
  294. Channel 14 : 2.484 GHz
  295. Current Frequency:2.412 GHz (Channel 1)
  296.  
  297. root@grill:~# sudo iwlist scan
  298. eth0 Interface doesn't support scanning.
  299.  
  300. lo Interface doesn't support scanning.
  301.  
  302. wlan0 Scan completed :
  303. Cell 01 - Address: 00:23:54:0B:CF:5D
  304. Channel:1
  305. Frequency:2.412 GHz (Channel 1)
  306. Quality=65/70 Signal level=-45 dBm
  307. Encryption key:on
  308. ESSID:"DV201AM"
  309. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
  310. 24 Mb/s; 36 Mb/s; 54 Mb/s
  311. Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
  312. Mode:Master
  313. Extra:tsf=000009310e89b00c
  314. Extra: Last beacon: 363ms ago
  315. IE: Unknown: 00074456323031414D
  316. IE: Unknown: 010882848B962430486C
  317. IE: Unknown: 030101
  318. IE: Unknown: 2A0100
  319. IE: Unknown: 2F0100
  320. IE: IEEE 802.11i/WPA2 Version 1
  321. Group Cipher : CCMP
  322. Pairwise Ciphers (1) : CCMP
  323. Authentication Suites (1) : PSK
  324. IE: Unknown: 32040C121860
  325. IE: Unknown: DD090010180203F0000000
  326. Cell 02 - Address: C0:C1:C0:FB:10:A4
  327. Channel:6
  328. Frequency:2.437 GHz (Channel 6)
  329. Quality=45/70 Signal level=-65 dBm
  330. Encryption key:on
  331. ESSID:"Cisco03423"
  332. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
  333. 24 Mb/s; 36 Mb/s; 54 Mb/s
  334. Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
  335. Mode:Master
  336. Extra:tsf=0000007edac4a37f
  337. Extra: Last beacon: 1322ms ago
  338. IE: Unknown: 000A436973636F3033343233
  339. IE: Unknown: 010882848B962430486C
  340. IE: Unknown: 030106
  341. IE: Unknown: 2A0100
  342. IE: Unknown: 2F0100
  343. IE: IEEE 802.11i/WPA2 Version 1
  344. Group Cipher : TKIP
  345. Pairwise Ciphers (2) : CCMP TKIP
  346. Authentication Suites (1) : PSK
  347. IE: Unknown: 32040C121860
  348. IE: Unknown: 2D1AFC181BFFFF000000000000000000000000000000000000000000
  349. IE: Unknown: 3D1606081500000000000000000000000000000000000000
  350. IE: Unknown: 4A0E14000A002C01C800140005001900
  351. IE: Unknown: 7F0101
  352. IE: Unknown: DD810050F204104A00011010440001021041000100103B00010310470010A08C04E792A85105AB5C52CCA024DE381021000C4C696E6B73797320496E632E1023000D4C696E6B7379732045323030301024000776312E302E30341042000234321054000800060050F20400011011000D4C696E6B737973204532303030100800020084
  353. IE: Unknown: DD090010180201F0040000
  354. IE: WPA Version 1
  355. Group Cipher : TKIP
  356. Pairwise Ciphers (2) : CCMP TKIP
  357. Authentication Suites (1) : PSK
  358. IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
  359. IE: Unknown: DD1E00904C33FC181BFFFF000000000000000000000000000000000000000000
  360. IE: Unknown: DD1A00904C3406081500000000000000000000000000000000000000
  361. Cell 03 - Address: 00:1D:60:06:3C:6B
  362. Channel:11
  363. Frequency:2.462 GHz (Channel 11)
  364. Quality=29/70 Signal level=-81 dBm
  365. Encryption key:on
  366. ESSID:"jony tuin"
  367. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
  368. 24 Mb/s; 36 Mb/s; 54 Mb/s
  369. Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
  370. Mode:Master
  371. Extra:tsf=00000003148b32c6
  372. Extra: Last beacon: 675ms ago
  373. IE: Unknown: 00096A6F6E79207475696E
  374. IE: Unknown: 010882848B962430486C
  375. IE: Unknown: 03010B
  376. IE: Unknown: 2A0100
  377. IE: Unknown: 2F0100
  378. IE: IEEE 802.11i/WPA2 Version 1
  379. Group Cipher : TKIP
  380. Pairwise Ciphers (2) : CCMP TKIP
  381. Authentication Suites (1) : PSK
  382. IE: Unknown: 32040C121860
  383. IE: Unknown: DD090010180200F0000000
  384. IE: WPA Version 1
  385. Group Cipher : TKIP
  386. Pairwise Ciphers (2) : CCMP TKIP
  387. Authentication Suites (1) : PSK
  388. Cell 04 - Address: 00:0C:F6:70:3C:40
  389. Channel:11
  390. Frequency:2.462 GHz (Channel 11)
  391. Quality=20/70 Signal level=-90 dBm
  392. Encryption key:on
  393. ESSID:"Sitecom703C40"
  394. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
  395. 18 Mb/s; 36 Mb/s; 54 Mb/s
  396. Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
  397. Mode:Master
  398. Extra:tsf=0000118c8f0d5f84
  399. Extra: Last beacon: 747ms ago
  400. IE: Unknown: 000D53697465636F6D373033433430
  401. IE: Unknown: 010882848B961224486C
  402. IE: Unknown: 03010B
  403. IE: Unknown: 2A0100
  404. IE: Unknown: 32040C183060
  405. IE: Unknown: 2D1AEE1117FFFF0000010000000000000000000000000C0000000000
  406. IE: Unknown: 3D160B070000000000000000000000000000000000000000
  407. IE: Unknown: 3E0100
  408. IE: IEEE 802.11i/WPA2 Version 1
  409. Group Cipher : CCMP
  410. Pairwise Ciphers (1) : CCMP
  411. Authentication Suites (1) : PSK
  412. IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
  413. IE: Unknown: 7F0101
  414. IE: Unknown: DD07000C4307000000
  415. IE: Unknown: DD1E00904C33EE1117FFFF0000010000000000000000000000000C0000000000
  416. IE: Unknown: DD1A00904C340B070000000000000000000000000000000000000000
  417. IE: Unknown: DDAF0050F204104A0001101044000102103B000103104700102880288028801880A880000CF6703C401021001A53697465636F6D20546563686E6F6C6F676965732C20496E632E1023001A53697465636F6D20576972656C65737320415020526F7574657210240006574C2D3335311042000A303941333330323632201054000800060050F20400011011001953697465636F6D203830322E31316E20415020526F75746572100800020008103C000101
  418. Cell 05 - Address: 00:0C:F6:0C:D1:07
  419. Channel:4
  420. Frequency:2.427 GHz (Channel 4)
  421. Quality=13/70 Signal level=-97 dBm
  422. Encryption key:on
  423. ESSID:"RAB4000TM"
  424. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s
  425. Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
  426. 36 Mb/s; 48 Mb/s; 54 Mb/s
  427. Mode:Master
  428. Extra:tsf=00000325b7c37183
  429. Extra: Last beacon: 1467ms ago
  430. IE: Unknown: 000952414234303030544D
  431. IE: Unknown: 010482848B96
  432. IE: Unknown: 030104
  433. IE: WPA Version 1
  434. Group Cipher : TKIP
  435. Pairwise Ciphers (1) : TKIP
  436. Authentication Suites (1) : PSK
  437. IE: Unknown: 050401030002
  438. IE: Unknown: 2A0100
  439. IE: Unknown: 32080C1218243048606C
  440. Cell 06 - Address: FC:C8:97:85:07:30
  441. Channel:6
  442. Frequency:2.437 GHz (Channel 6)
  443. Quality=15/70 Signal level=-95 dBm
  444. Encryption key:on
  445. ESSID:"connect"
  446. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
  447. 24 Mb/s; 36 Mb/s; 54 Mb/s
  448. Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
  449. Mode:Master
  450. Extra:tsf=00000180777c819b
  451. Extra: Last beacon: 1388ms ago
  452. IE: Unknown: 0007636F6E6E656374
  453. IE: Unknown: 010882848B962430486C
  454. IE: Unknown: 030106
  455. IE: Unknown: 050400010000
  456. IE: Unknown: 2A0104
  457. IE: Unknown: 2F0104
  458. IE: IEEE 802.11i/WPA2 Version 1
  459. Group Cipher : TKIP
  460. Pairwise Ciphers (2) : CCMP TKIP
  461. Authentication Suites (1) : PSK
  462. IE: Unknown: 32040C121860
  463. IE: Unknown: 2D1A1C181BFFFF000000000000000000000000000000000000000000
  464. IE: Unknown: 3D1606081500000000000000000000000000000000000000
  465. IE: Unknown: DD0E0050F204104A0001101044000102
  466. IE: Unknown: DD090010180202F0050000
  467. IE: WPA Version 1
  468. Group Cipher : TKIP
  469. Pairwise Ciphers (2) : CCMP TKIP
  470. Authentication Suites (1) : PSK
  471. IE: Unknown: DD180050F2020101000003A4000027A4000042435E0062322F00
  472. IE: Unknown: DD1E00904C331C181BFFFF000000000000000000000000000000000000000000
  473. IE: Unknown: DD1A00904C3406081500000000000000000000000000000000000000
  474. Cell 07 - Address: 00:0C:F6:51:0C:B5
  475. Channel:11
  476. Frequency:2.462 GHz (Channel 11)
  477. Quality=8/70 Signal level=-102 dBm
  478. Encryption key:on
  479. ESSID:"Sitecom510CB5"
  480. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
  481. 18 Mb/s; 36 Mb/s; 54 Mb/s
  482. Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
  483. Mode:Master
  484. Extra:tsf=000010bf26794169
  485. Extra: Last beacon: 728ms ago
  486. IE: Unknown: 000D53697465636F6D353130434235
  487. IE: Unknown: 010882848B961224486C
  488. IE: Unknown: 03010B
  489. IE: Unknown: 32040C183060
  490. IE: Unknown: 33082001020304050607
  491. IE: Unknown: 33082105060708090A0B
  492. IE: Unknown: DD270050F204104A0001101044000102104700102880288028801880A880000CF6510CB5103C000101
  493. IE: Unknown: 050400010000
  494. IE: Unknown: 2A0100
  495. IE: Unknown: 2D1AEE1117FFFF0000010000000000000000000000000C0000000000
  496. IE: Unknown: 3D160B070700000000000000000000000000000000000000
  497. IE: Unknown: 7F0101
  498. IE: IEEE 802.11i/WPA2 Version 1
  499. Group Cipher : CCMP
  500. Pairwise Ciphers (1) : CCMP
  501. Authentication Suites (1) : PSK
  502. IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
  503. IE: Unknown: 0B05010051127A
  504. IE: Unknown: DD1E00904C33EE1117FFFF0000010000000000000000000000000C0000000000
  505. IE: Unknown: DD1A00904C340B070700000000000000000000000000000000000000
  506. IE: Unknown: DD07000C4304000000
  507. Cell 08 - Address: 00:1C:DF:8B:F3:77
  508. Channel:13
  509. Frequency:2.472 GHz (Channel 13)
  510. Quality=4/70 Signal level=-106 dBm
  511. Encryption key:on
  512. ESSID:"belkin-90"
  513. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
  514. 18 Mb/s; 36 Mb/s; 54 Mb/s
  515. Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
  516. Mode:Master
  517. bbq@grill:~$ sudo ifdown wlan0
  518. ifdown: interface wlan0 not configured
  519. bbq@grill:~$ sudo ifup wlan0
  520. RTNETLINK answers: File exists
  521. Failed to bring up wlan0.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement