This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| modprobe ipv6 | |
| modprobe udp_tunnel | |
| modprobe ip6_udp_tunnel | |
| ip link add dev wg0 type wireguard | |
| wg setconf wg0 /etc/wireguard/config | |
| wg showconf wg0 | |
| brctl addbr internet | |
| brctl stp internet on | |
| ip link set up dev wg0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # From: http://www.dd-wrt.com/phpBB2/viewtopic.php?t=86912 | |
| # 1. Prepare the USB disk | |
| # Create an ext3 partition using GParted for instance | |
| #2. Configure DD-WRT | |
| #Under Services->Services->Secure Shell: | |
| #* Enable SSHd | |
| #* Click Apply Settings | |
| # |