Category: Linux Tech

Wlan Interface – Packet Injection in Linux

Very simple way to test if your WiFi card supports injection: Stop Network Manager: /etc/init.d/network-manager stopPut the card in monitor mode: airmod-ng start wlan0Test using: aireplay-ng -9 mon0 With luck, the following output is displayed:Trying broadcast probe requests…Injection is working!

IPv6 DNS Advertisements

DNS client configuration can be handled by the standard Router Advertisement Daemon (radvd) – apt-get install radvd Edit /etc/radvd.conf on your Linux Router and insert the following at the end of the file to use Google’s DNS Caching server: RDNS 2001:4860:4860::8888{}; On your Linux clients install rdnssd. To automatically insert the advertised IPv6 DNS servers

Linux Networking Bridge

It is often useful to place a Linux system on a specific network cable, to packet sniff or modify the network behaviour. The network setup: [switch] - ethernet cable - [node] becomes: [switch] - ethernet cable - [[Linux Bridge]] - ethernet cable - [node] The only requirement for the Linux Bridge is two physical network

Linux CPU Scaling Governor – Performance and Overheating

On my previous laptop I suffered with repeated over-heating problems whenever CPU load went high for a prolonged period. After several emergency shutdowns (performed by ACPI) I discovered the problem: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor returned the result: “performance” Inserting the following line before the ‘exit’ line in /etc/rc.local: echo "conservative" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor resolved the problem. For all