By default Readynas uses a weak SSH key and apache configurations. Regenerate SSH keys by running the follow: [code] # ssh-keygen -t rsa1 -f "/etc/ssh/ssh_host_key" -N ” # ssh-keygen -t rsa -f…
Month: April 2011
Windows 7 Reset IPv6 State
run this in a command line as an administrator to reset the default IPv6 state on your local computer after playing around with it. netsh interface ipv6 reset Here’s some other useful…
Windows 7 IPv6 Auto Config by MAC address
1. Open up a Command Prompt in Administrator mode 2. Run the following commands. Each one should respond “Ok”. [code] netsh interface ipv6 set privacy state=disabled store=active netsh interface ipv6 set privacy…
Static IPv6 address on Windows7
To configure IPv6 for static addressing Click Use the following IPv6 address, and then do one of the following: For a local area connection, in IPv6 address, Subnet prefix length, and Default…
Wireless Router TomatoUSB Firmware
Tomato firmware is great compared to DD-WRT, it has loopback and is compatible with playing Netflix on the iphone. Also it store the Bandwidth stats on RAM and saves it to Samba…
Restoring DD-WRT NAT Loopback
Run within Administration > Commands > save as a firewall script [code] iptables -t nat -I POSTROUTING -o br0 -s 10.0.0.0/24 -d 10.0.0.0/24 -j MASQUERADE [/code]