This module was posting quite a lot of messages to the console (issue nulldata to keep alive and issue_nulldata:0) , it can be annoying, I commented out these 2 lines to remove them:
In core folder / rtl871x_mlme_ext.c I commented ligne 2790:
DBG_871X("issue nulldata to keep alive\n");
and line 1507:DBG_871X("%s:%d\n", __FUNCTION__, power_mode);
Here is my network configuration ( /etc/network/interfaces)
# The loopback network interface - always needed here
auto lo
iface lo inet loopback
# this one for dhcp
#auto eth0
#iface eth0 inet dhcp
# this one for WIFI
allow-hotplug wlan2
iface wlan2 inet static
pre-up ifconfig wlan2 up
pre-up iwconfig wlan2 mode Managed
pre-up iwconfig wlan2 essid "linksys-G-MIX"
# The primary network interface - use this for cable if WIFI above not used
# in that case disable the WIFI above with # before each line
#allow-hotplug eth0
#iface eth0 inet static
# set these for the LAN address
address 192.168.11.16
netmask 255.255.255.0
network 192.168.11.0
broadcast 192.168.11.255
# set this for the Internet modem gateway to the LAN
gateway 192.168.11.1
# dns-* options are implemented by the resolvconf package, if installed
# my gateway acts as a local dns-nameserver
dns-nameservers 192.168.11.230
dns-search example.org
No comments:
Post a Comment