Witam.
Potrzebuję stworzyć sieć bezprzewodową na komputerze (Raspberry Pi) do ktorej można będzie się podłączyć i przesyłać dane (np. sterowanie jakimś programem itp.).
Ów komputer nie będzie podłączony do routera tylko będzie powiedzmy “autonomiczny”.
Spróbuję to trochę zobrazować.
laptop(Windows lub Linux) <-----WIFI---->komputer z hostapd;
Udało mi się stworzyć sieć bezprzewodową zabezpieczyć ją WPA ale nawet pingi nię chcą przejść poprzez utworzone łącze.
Pliki konfiguracyjne:
/etc/network/interfaces
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.127
netmask 255.255.255.0
gateway 192.168.1.1
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.1.128
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 0.0.0.0
/etc/dhcp/dhcpd.conf
#
# Sample configuration file for ISC dhcpd for Debian
#
#
# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
ddns-update-style none;
# option definitions common to all supported networks...
#option domain-name "example.org";
#option domain-name-servers ns1.example.org, ns2.example.org;
default-lease-time 600;
max-lease-time 7200;
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
#log-facility local7;
# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.
#subnet 10.152.187.0 netmask 255.255.255.0 {
#}
# This is a very basic subnet declaration.
#subnet 10.254.239.0 netmask 255.255.255.224 {
# range 10.254.239.10 10.254.239.20;
# option routers rtr-239-0-1.example.org, rtr-239-0-2.example.org;
#}
# This declaration allows BOOTP clients to get dynamic addresses,
# which we don't really recommend.
#subnet 10.254.239.32 netmask 255.255.255.224 {
# range dynamic-bootp 10.254.239.40 10.254.239.60;
# option broadcast-address 10.254.239.31;
# option routers rtr-239-32-1.example.org;
#}
# A slightly different configuration for an internal subnet.
#subnet 10.5.5.0 netmask 255.255.255.224 {
# range 10.5.5.26 10.5.5.30;
# option domain-name-servers ns1.internal.example.org;
# option domain-name "internal.example.org";
# option routers 10.5.5.1;
# option broadcast-address 10.5.5.31;
# default-lease-time 600;
# max-lease-time 7200;
#}
# Hosts which require special configuration options can be listed in
# host statements. If no address is specified, the address will be
# allocated dynamically (if possible), but the host-specific information
# will still come from the host declaration.
#host passacaglia {
# hardware ethernet 0:0:c0:5d:bd:95;
# filename "vmunix.passacaglia";
# server-name "toccata.fugue.com";
#}
# Fixed IP addresses can also be specified for hosts. These addresses
# should not also be listed as being available for dynamic assignment.
# Hosts for which fixed IP addresses have been specified can boot using
# BOOTP or DHCP. Hosts for which no fixed address is specified can only
# be booted with DHCP, unless there is an address range on the subnet
# to which a BOOTP client is connected which has the dynamic-bootp flag
# set.
#host fantasia {
# hardware ethernet 08:00:07:26:c0:a5;
# fixed-address fantasia.fugue.com;
#}
# You can declare a class of clients and then do address allocation
# based on that. The example below shows a case where all clients
# in a certain class get addresses on the 10.17.224/24 subnet, and all
# other clients get addresses on the 10.0.29/24 subnet.
#class "foo" {
# match if substring (option vendor-class-identifier, 0, 4) = "SUNW";
#}
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.100 192.168.1.120;
option broadcast-address 192.168.1.255;
option routers 192.168.1.1;
option domain-name-servers 194.204.159.1;
option domain-name "RPi";
}
# subnet 10.0.29.0 netmask 255.255.255.0 {
# option routers rtr-29.example.org;
# }
# pool {
# allow members of "foo";
# range 10.17.224.10 10.17.224.250;
# }
# pool {
# deny members of "foo";
# range 10.0.29.10 10.0.29.230;
# }
#}
/etc/hostapd/hostapd.conf
# Ustawienie interfejsu
#interface=wlan0
# Wymagany do obsługi AP moduł. Możliwe są inne,
# jak prism czy madwifi (patrz: example z /usr/share/docs/..)
#driver=nl80211
# Komunikaty daemona.
#logger_syslog=-1
#logger_syslog_level=2
#logger_stdout=-1
#logger_stdout_level=2
#dump_file=/tmp/hostapd.dump
#ctrl_interface=/var/run/hostapd
#ctrl_interface_group=0
# Tryb pracy. Testowane tylko na b i g.
# W przypadku n na ath9k wysypywał się.
#hw_mode=g
# Kanał od 0 do 13 (bodajże).
#channel=10
# Tryb pracy zabezpieczeń
#wpa=1
# Łatwiejszy sposób, możliwe też jest shared key kilkunasto-znakowy.
# Dla passphrase wymagane minimum 8 znaków w tym litery oraz cyfry
#wpa_passphrase=magicKey0
# Nazwa widoczna dla innych
#ssid=MyAP
interface=wlan0
driver=nl80211
ctrl_interface=/var/run/hostapd
ctrl_interface_group=0
ssid=MyWifiAP
hw_mode=g
channel=10
wpa=2
wpa_passphrase=mypipassword1
wpa_key_mgmt=WPA-PSK
wpa_pairwise=CCMP
rsn_pairwise=CCMP
beacon_int=100
auth_algs=3
wmm_enabled=1
dmesg
[0.000000] Booting Linux on physical CPU 0
[0.000000] Initializing cgroup subsys cpu
[0.000000] Linux version 3.6.11+ (dc4@dc4-arm-01) (gcc version 4.7.2 20120731 (prerelease) (crosstool-NG linaro-1.13.1+bzr2458 - Linaro GCC 2012.08) ) #456 PREEMPT Mon May 20 17:42:15 BST 2013
[0.000000] CPU: ARMv6-compatible processor [410fb767] revision 7 (ARMv7), cr=00c5387d
[0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT nonaliasing instruction cache
[0.000000] Machine: BCM2708
[0.000000] cma: CMA: reserved 16 MiB at 1b000000
[0.000000] Memory policy: ECC disabled, Data cache writeback
[0.000000] On node 0 totalpages: 114688
[0.000000] free_area_init_node: node 0, pgdat c053b854, node_mem_map c05e5000
[0.000000] Normal zone: 896 pages used for memmap
[0.000000] Normal zone: 0 pages reserved
[0.000000] Normal zone: 113792 pages, LIFO batch:31
[0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[0.000000] pcpu-alloc: [0] 0
[0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 113792
[0.000000] Kernel command line: dma.dmachans=0x7f35 bcm2708_fb.fbwidth=656 bcm2708_fb.fbheight=416 bcm2708.boardrev=0xd bcm2708.serial=0xf448902e smsc95xx.macaddr=B8:27:EB:48:90:2E sdhci-bcm2708.emmc_clock_freq=100000000 vc_mem.mem_base=0x1ec00000 vc_mem.mem_size=0x20000000 dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait
[0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[0.000000] Memory: 448MB = 448MB total
[0.000000] Memory: 432264k/432264k available, 26488k reserved, 0K highmem
[0.000000] Virtual kernel memory layout:
[0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
[0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
[0.000000] vmalloc : 0xdc800000 - 0xff000000 ( 552 MB)
[0.000000] lowmem : 0xc0000000 - 0xdc000000 ( 448 MB)
[0.000000] modules : 0xbf000000 - 0xc0000000 ( 16 MB)
[0.000000] .text : 0xc0008000 - 0xc04e647c (4986 kB)
[0.000000] .init : 0xc04e7000 - 0xc0507f24 ( 132 kB)
[0.000000] .data : 0xc0508000 - 0xc053c080 ( 209 kB)
[0.000000] .bss : 0xc053c0a4 - 0xc05e4758 ( 674 kB)
[0.000000] NR_IRQS:330
[0.000000] sched_clock: 32 bits at 1000kHz, resolution 1000ns, wraps every 4294967ms
[0.000000] Console: colour dummy device 80x30
[0.000000] console [tty1] enabled
[0.001029] Calibrating delay loop... 697.95 BogoMIPS (lpj=3489792)
[0.060127] pid_max: default: 32768 minimum: 301
[0.060462] Mount-cache hash table entries: 512
[0.061224] Initializing cgroup subsys cpuacct
[0.061280] Initializing cgroup subsys devices
[0.061313] Initializing cgroup subsys freezer
[0.061342] Initializing cgroup subsys blkio
[0.061433] CPU: Testing write buffer coherency: ok
[0.061765] hw perfevents: enabled with v6 PMU driver, 3 counters available
[0.061907] Setting up static identity map for 0x39d698 - 0x39d6f4
[0.063400] devtmpfs: initialized
[0.074074] NET: Registered protocol family 16
[0.080564] DMA: preallocated 4096 KiB pool for atomic coherent allocations
[0.081669] bcm2708.uart_clock = 0
[0.083067] hw-breakpoint: found 6 breakpoint and 1 watchpoint registers.
[0.083121] hw-breakpoint: maximum watchpoint size is 4 bytes.
[0.083157] mailbox: Broadcom VideoCore Mailbox driver
[0.083253] bcm2708_vcio: mailbox at f200b880
[0.083354] bcm_power: Broadcom power driver
[0.083393] bcm_power_open() -> 0
[0.083418] bcm_power_request(0, 8)
[0.584104] bcm_mailbox_read -> 00000080, 0
[0.584146] bcm_power_request -> 0
[0.584173] Serial: AMBA PL011 UART driver
[0.584315] dev:f1: ttyAMA0 at MMIO 0x20201000 (irq = 83) is a PL011 rev3
[0.908146] console [ttyAMA0] enabled
[0.931793] bio: create slab at 0
[0.936677] SCSI subsystem initialized
[0.940772] usbcore: registered new interface driver usbfs
[0.946356] usbcore: registered new interface driver hub
[0.951953] usbcore: registered new device driver usb
[0.958313] Switching to clocksource stc
[0.962552] FS-Cache: Loaded
[0.965688] CacheFiles: Loaded
[0.980457] NET: Registered protocol family 2
[0.985736] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[0.993479] TCP bind hash table entries: 16384 (order: 4, 65536 bytes)
[1.000270] TCP: Hash tables configured (established 16384 bind 16384)
[1.006875] TCP: reno registered
[1.010127] UDP hash table entries: 256 (order: 0, 4096 bytes)
[1.016024] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[1.022615] NET: Registered protocol family 1
[1.027483] RPC: Registered named UNIX socket transport module.
[1.033527] RPC: Registered udp transport module.
[1.038249] RPC: Registered tcp transport module.
[1.042995] RPC: Registered tcp NFSv4.1 backchannel transport module.
[1.050112] bcm2708_dma: DMA manager at f2007000
[1.054902] bcm2708_gpio: bcm2708_gpio_probe c0515d98
[1.060369] vc-mem: phys_addr:0x00000000 mem_base=0x1ec00000 mem_size:0x20000000(512 MiB)
[1.069522] audit: initializing netlink socket (disabled)
[1.075121] type=2000 audit(0.930:1): initialized
[1.197344] VFS: Disk quotas dquot_6.5.2
[1.201380] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[1.208442] FS-Cache: Netfs 'nfs' registered for caching
[1.214194] NFS: Registering the id_resolver key type
[1.219356] Key type id_resolver registered
[1.223647] Key type id_legacy registered
[1.228011] msgmni has been set to 876
[1.233542] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[1.241252] io scheduler noop registered
[1.245298] io scheduler deadline registered (default)
[1.250483] io scheduler cfq registered
[1.262506] Console: switching to colour frame buffer device 82x26
[1.273901] kgdb: Registered I/O driver kgdboc.
[1.280958] vc-cma: Videocore CMA driver
[1.286805] vc-cma: vc_cma_base = 0x00000000
[1.293426] vc-cma: vc_cma_size = 0x00000000 (0 MiB)
[1.300591] vc-cma: vc_cma_initial = 0x00000000 (0 MiB)
[1.316706] brd: module loaded
[1.326426] loop: module loaded
[1.331570] vchiq: vchiq_init_state: slot_zero = 0xdb000000, is_master = 0
[1.340958] Loading iSCSI transport class v2.0-870.
[1.348618] usbcore: registered new interface driver smsc95xx
[1.356409] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
[1.569046] Core Release: 2.80a
[1.573957] Setting default values for core params
[1.580453] Finished setting default values for core params
[1.792860] Using Buffer DMA mode
[1.797856] Periodic Transfer Interrupt Enhancement - disabled
[1.805363] Multiprocessor Interrupt Enhancement - disabled
[1.812640] OTG VER PARAM: 0, OTG VER FLAG: 0
[1.818678] Dedicated Tx FIFOs mode
[1.824825] dwc_otg: Microframe scheduler enabled
[1.825231] dwc_otg bcm2708_usb: DWC OTG Controller
[1.831900] dwc_otg bcm2708_usb: new USB bus registered, assigned bus number 1
[1.840980] dwc_otg bcm2708_usb: irq 32, io mem 0x00000000
[1.848261] Init: Port Power? op_state=1
[1.853972] Init: Power Port (0)
[1.858982] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[1.867636] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[1.876722] usb usb1: Product: DWC OTG Controller
[1.883287] usb usb1: Manufacturer: Linux 3.6.11+ dwc_otg_hcd
[1.890851] usb usb1: SerialNumber: bcm2708_usb
[1.897949] hub 1-0:1.0: USB hub found
[1.903571] hub 1-0:1.0: 1 port detected
[1.909541] dwc_otg: FIQ enabled
[1.909558] dwc_otg: NAK holdoff enabled
[1.909579] Module dwc_common_port init
[1.909795] Initializing USB Mass Storage driver...
[1.916687] usbcore: registered new interface driver usb-storage
[1.924489] USB Mass Storage support registered.
[1.930960] usbcore: registered new interface driver libusual
[1.938778] mousedev: PS/2 mouse device common for all mice
[1.946882] bcm2835-cpufreq: min=700000 max=800000 cur=700000
[1.954550] bcm2835-cpufreq: switching to governor powersave
[1.961945] bcm2835-cpufreq: switching to governor powersave
[1.969301] cpuidle: using governor ladder
[1.975068] cpuidle: using governor menu
[1.980635] sdhci: Secure Digital Host Controller Interface driver
[1.988476] sdhci: Copyright(c) Pierre Ossman
[1.994559] sdhci: Enable low-latency mode
[2.042591] mmc0: SDHCI controller on BCM2708_Arasan [platform] using platform's DMA
[2.053922] mmc0: BCM2708 SDHC host at 0x20300000 DMA 2 IRQ 77
[2.063711] sdhci-pltfm: SDHCI platform and OF driver helper
[2.076896] usbcore: registered new interface driver usbhid
[2.084348] usbhid: USB HID core driver
[2.094753] TCP: cubic registered
[2.101975] Initializing XFRM netlink socket
[2.110244] Indeed it is in host mode hprt0 = 00021501
[2.117293] NET: Registered protocol family 17
[2.132602] Key type dns_resolver registered
[2.142811] VFP support v0.3: implementor 41 architecture 1 part 20 variant b rev 5
[2.183260] registered taskstats version 1
[2.190282] Waiting for root device /dev/mmcblk0p2...
[2.197417] mmc0: read SD Status register (SSR) after 3 attempts
[2.218960] mmc0: new high speed SDHC card at address e624
[2.242476] mmcblk0: mmc0:e624 SU16G 14.8 GiB
[2.250895] mmcblk0: p1 p2
[2.341685] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[2.353840] VFS: Mounted root (ext4 filesystem) on device 179:2.
[2.369892] devtmpfs: mounted
[2.374937] usb 1-1: new high-speed USB device number 2 using dwc_otg
[2.383830] Freeing init memory: 128K
[2.389919] Indeed it is in host mode hprt0 = 00001101
[2.603041] usb 1-1: New USB device found, idVendor=0424, idProduct=9512
[2.611887] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[2.622422] hub 1-1:1.0: USB hub found
[2.628374] hub 1-1:1.0: 3 ports detected
[2.912774] usb 1-1.1: new high-speed USB device number 3 using dwc_otg
[3.043179] usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00
[3.052165] usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[3.076892] smsc95xx v1.0.4
[3.147306] smsc95xx 1-1.1:1.0: eth0: register 'smsc95xx' at usb-bcm2708_usb-1.1, smsc95xx USB 2.0 Ethernet, b8:27:eb:48:90:2e
[3.262770] usb 1-1.3: new high-speed USB device number 4 using dwc_otg
[3.526635] usb 1-1.3: New USB device found, idVendor=07d1, idProduct=3c03
[3.542659] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[3.552154] usb 1-1.3: Product: 802.11 bg WLAN
[3.566729] usb 1-1.3: Manufacturer: Ralink
[3.814293] udevd[154]: starting version 175
[5.102747] Registered led device: led0
[6.062977] cfg80211: Calling CRDA to update world regulatory domain
[6.382827] usb 1-1.3: reset high-speed USB device number 4 using dwc_otg
[6.898321] cfg80211: World regulatory domain updated:
[6.907862] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[6.920512] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[6.933420] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[6.945865] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[6.961043] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[6.977125] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[7.000835] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[7.002080] Registered led device: rt73usb-phy0::radio
[7.002228] Registered led device: rt73usb-phy0::assoc
[7.002353] Registered led device: rt73usb-phy0::quality
[7.004903] usbcore: registered new interface driver rt73usb
[9.537538] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
[9.979543] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
[19.467242] smsc95xx 1-1.1:1.0: eth0: link up, 100Mbps, full-duplex, lpa 0x41E1
[21.834885] bcm2835-cpufreq: switching to governor ondemand
[21.834915] bcm2835-cpufreq: switching to governor ondemand
[24.182124] Adding 102396k swap on /var/swap. Priority:-1 extents:1 across:102396k SS
[26.075629] Bluetooth: Core ver 2.16
[26.083316] NET: Registered protocol family 31
[26.083345] Bluetooth: HCI device and connection manager initialized
[26.083359] Bluetooth: HCI socket layer initialized
[26.083368] Bluetooth: L2CAP socket layer initialized
[26.083418] Bluetooth: SCO socket layer initialized
[26.142607] Bluetooth: RFCOMM TTY layer initialized
[26.142657] Bluetooth: RFCOMM socket layer initialized
[26.142671] Bluetooth: RFCOMM ver 1.11
[26.162549] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[26.162583] Bluetooth: BNEP filters: protocol multicast
[28.476598] warning: process `colord-sane' used the deprecated sysctl system call with 8.1.2.
lsusb
Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp.
Bus 001 Device 004: ID 07d1:3c03 D-Link System AirPlus G DWL-G122 Wireless Adapter(rev.C1) [Ralink RT2571W]
iw list
Wiphy phy0
Band 1:
Frequencies:
* 2412 MHz [1] (20.0 dBm)
* 2417 MHz [2] (20.0 dBm)
* 2422 MHz [3] (20.0 dBm)
* 2427 MHz [4] (20.0 dBm)
* 2432 MHz [5] (20.0 dBm)
* 2437 MHz [6] (20.0 dBm)
* 2442 MHz [7] (20.0 dBm)
* 2447 MHz [8] (20.0 dBm)
* 2452 MHz [9] (20.0 dBm)
* 2457 MHz [10] (20.0 dBm)
* 2462 MHz [11] (20.0 dBm)
* 2467 MHz [12] (20.0 dBm) (passive scanning, no IBSS)
* 2472 MHz [13] (20.0 dBm) (passive scanning, no IBSS)
* 2484 MHz [14] (20.0 dBm) (passive scanning, no IBSS)
Bitrates (non-HT):
* 1.0 Mbps
* 2.0 Mbps (short preamble supported)
* 5.5 Mbps (short preamble supported)
* 11.0 Mbps (short preamble supported)
* 6.0 Mbps
* 9.0 Mbps
* 12.0 Mbps
* 18.0 Mbps
* 24.0 Mbps
* 36.0 Mbps
* 48.0 Mbps
* 54.0 Mbps
max # scan SSIDs: 4
max scan IEs length: 2285 bytes
Coverage class: 0 (up to 0m)
Supported Ciphers:
* WEP40 (00-0f-ac:1)
* WEP104 (00-0f-ac:5)
* TKIP (00-0f-ac:2)
* CCMP (00-0f-ac:4)
Available Antennas: TX 0 RX 0
Supported interface modes:
* IBSS
* managed
* AP
* AP/VLAN
* WDS
* monitor
* mesh point
software interface modes (can always be added):
* AP/VLAN
* monitor
interface combinations are not supported
Supported commands:
* new_interface
* set_interface
* new_key
* new_beacon
* new_station
* new_mpath
* set_mesh_params
* set_bss
* authenticate
* associate
* deauthenticate
* disassociate
* join_ibss
* join_mesh
* set_tx_bitrate_mask
* action
* frame_wait_cancel
* set_wiphy_netns
* set_channel
* set_wds_peer
* Unknown command (84)
* Unknown command (87)
* Unknown command (85)
* connect
* disconnect
Supported TX frame types:
* IBSS: 0x00 0x10 0x20 0x30 0x40 0x50 0x60 0x70 0x80 0x90 0xa0 0xb0 0xc0 0xd0 0xe0 0xf0
* managed: 0x00 0x10 0x20 0x30 0x40 0x50 0x60 0x70 0x80 0x90 0xa0 0xb0 0xc0 0xd0 0xe0 0xf0
* AP: 0x00 0x10 0x20 0x30 0x40 0x50 0x60 0x70 0x80 0x90 0xa0 0xb0 0xc0 0xd0 0xe0 0xf0
* AP/VLAN: 0x00 0x10 0x20 0x30 0x40 0x50 0x60 0x70 0x80 0x90 0xa0 0xb0 0xc0 0xd0 0xe0 0xf0
* mesh point: 0x00 0x10 0x20 0x30 0x40 0x50 0x60 0x70 0x80 0x90 0xa0 0xb0 0xc0 0xd0 0xe0 0xf0
* P2P-client: 0x00 0x10 0x20 0x30 0x40 0x50 0x60 0x70 0x80 0x90 0xa0 0xb0 0xc0 0xd0 0xe0 0xf0
* P2P-GO: 0x00 0x10 0x20 0x30 0x40 0x50 0x60 0x70 0x80 0x90 0xa0 0xb0 0xc0 0xd0 0xe0 0xf0
Supported RX frame types:
* IBSS: 0xb0 0xc0 0xd0
* managed: 0x40 0xd0
* AP: 0x00 0x20 0x40 0xa0 0xb0 0xc0 0xd0
* AP/VLAN: 0x00 0x20 0x40 0xa0 0xb0 0xc0 0xd0
* mesh point: 0xb0 0xc0 0xd0
* P2P-client: 0x40 0xd0
* P2P-GO: 0x00 0x20 0x40 0xa0 0xb0 0xc0 0xd0
Device supports RSN-IBSS.
HT Capability overrides:
* MCS: ff ff ff ff ff ff ff ff ff ff
* maximum A-MSDU length
* supported channel width
* short GI for 40 MHz
* max A-MPDU length exponent
* min MPDU start spacing
Device supports TX status socket option.
Device supports HT-IBSS.
Macie może jakieś pomysły dlaczego komunikacja nie działa w utworzonej sieci?