Advertisement
Guest User

Untitled

a guest
Feb 4th, 2012
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.97 KB | None | 0 0
  1. the other machine sees the Access Point along with my home router, as per iwlist scan:
  2. [CODE]lo Interface doesn't support scanning.
  3.  
  4. eth0 Interface doesn't support scanning.
  5.  
  6. wlan0 Scan completed :
  7. Cell 01 - Address: 00:24:89:5B:DA:6D
  8. Channel:6
  9. Frequency:2.437 GHz (Channel 6)
  10. Quality=70/70 Signal level=-29 dBm
  11. Encryption key:on
  12. ESSID:"Vodafone-XXXXXXX"
  13. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
  14. 24 Mb/s; 36 Mb/s; 54 Mb/s
  15. Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
  16. Mode:Master
  17. Extra:tsf=000000329969718b
  18. Extra: Last beacon: 430ms ago
  19. IE: Unknown: 0011566F6461666F6E652D3131343336353733
  20. IE: Unknown: 010882848B962430486C
  21. IE: Unknown: 030106
  22. IE: Unknown: 2A0100
  23. IE: Unknown: 2F0100
  24. IE: Unknown: 32040C121860
  25. IE: Unknown: DD760050F204104A00011010440001021041000100103B0001031047001038BC60F2291E166EF52A8C241EF1A3111021000842726F6164636F6D1023000842726F6164636F6D1024000631323334353610420004313233341054000800060050F20400011011000A42726F6164636F6D4150100800020088
  26. IE: Unknown: DD090010180203F4040000
  27. IE: WPA Version 1
  28. Group Cipher : TKIP
  29. Pairwise Ciphers (2) : CCMP TKIP
  30. Authentication Suites (1) : PSK
  31. IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
  32. Cell 02 - Address: 06:15:AF:67:7B:15
  33. Channel:1
  34. Frequency:2.412 GHz (Channel 1)
  35. Quality=46/70 Signal level=-64 dBm
  36. Encryption key:off
  37. ESSID:"NegraModelo"
  38. Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
  39. 11 Mb/s; 12 Mb/s; 18 Mb/s
  40. Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
  41. Mode:Master
  42. Extra:tsf=0000000012b83182
  43. Extra: Last beacon: 460ms ago
  44. IE: Unknown: 000B4E656772614D6F64656C6F
  45. IE: Unknown: 010882848B0C12961824
  46. IE: Unknown: 030101
  47. IE: Unknown: 07064E4149010B14
  48. IE: Unknown: 200100
  49. IE: Unknown: 2A0100
  50. IE: Unknown: 32043048606C
  51. IE: Unknown: DD180050F2020101880002A3400027A4000042435E0062322F00
  52. IE: IEEE 802.11i/WPA2 Version 1
  53. Group Cipher : TKIP
  54. Pairwise Ciphers (2) : CCMP TKIP
  55. Authentication Suites (2) : 802.1x PSK
  56. IE: WPA Version 1
  57. Group Cipher : TKIP
  58. Pairwise Ciphers (2) : CCMP TKIP
  59. Authentication Suites (2) : 802.1x PSK
  60. IE: Unknown: DD0900037F01010020FF7F
  61. [/CODE]
  62.  
  63. Now let's see what I got on my Access Point machine:
  64. [CODE]~$ iwconfig
  65. lo no wireless extensions.
  66.  
  67. eth0 no wireless extensions.
  68.  
  69. wifi0 no wireless extensions.
  70.  
  71. ath0 IEEE 802.11g ESSID:"NegraModelo"
  72. Mode:Master Frequency:2.412 GHz Access Point: 06:15:AF:67:7B:15
  73. Bit Rate:0 kb/s Tx-Power:17 dBm Sensitivity=1/1
  74. Retry:off RTS thr:off Fragment thr:off
  75. Power Management:off
  76. Link Quality=0/70 Signal level=-95 dBm Noise level=-95 dBm
  77. Rx invalid nwid:5 Rx invalid crypt:0 Rx invalid frag:0
  78. Tx excessive retries:0 Invalid misc:0 Missed beacon:0[/CODE]
  79.  
  80. My /etc/network/interfaces file:
  81. [CODE]# Set up the local loopback interface
  82. auto lo
  83. iface lo inet loopback
  84.  
  85. # Set up the external interface
  86. #
  87. # Don't forget to change eth0 to the proper name of the external
  88. # interface if applicable.
  89. #
  90. auto eth0
  91. iface eth0 inet dhcp
  92.  
  93. # Set up the internal wireless network
  94. #
  95. # Don't forget to change wlan0 to the proper name of the internal
  96. # wireless network interface if applicable.
  97. #
  98. # If you would like to use WEP, uncomment the line 'wireless-key'
  99. # and replace '<key goes here>' with a WEP key.
  100. #
  101. # You may also change the network essid and channel.
  102. #
  103. auto ath0
  104. iface ath0 inet static
  105. wireless-mode master
  106. wireless-essid NegraModelo
  107. wireless-channel 2
  108. #wireless-key <key goes here>
  109. address 192.168.0.1
  110. network 192.168.0.0
  111. netmask 255.255.255.0
  112. broadcast 192.168.0.255
  113. [/CODE]
  114.  
  115. [CODE]~$ ip route
  116. 192.168.1.0/26 dev eth0 proto kernel scope link src 192.168.1.8
  117. 192.168.0.0/24 dev ath0 proto kernel scope link src 192.168.0.1
  118. 169.254.0.0/16 dev eth0 scope link metric 1000
  119. default via 192.168.1.1 dev eth0 metric 100[/CODE]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement