Categories:
Email 🠪 Servers 🠪 Testing 🠪 Tips
Hardware 🠪 3D Printing 🠪 Apple 🠪 Batteries 🠪 Drives 🠪 Edgerouter 🠪 Electronics 🠪 Laptop 🠪 Modems 🠪 Phone 🠪 Printers 🠪 Raspberry Pi 🠪 Testing 🠪 Virtualization
Links 🠪 Interesting 🠪 Media
Network 🠪 Data 🠪 Testing 🠪 VPN
Scripts 🠪 Batch 🠪 Linux 🠪 Powershell
Servers 🠪 Databases 🠪 Misc 🠪 Website
Software 🠪 Other
Utilities 🠪 Backup 🠪 Fix Issues 🠪 Recovery
Video 🠪 Editing
Websites 🠪 HTML 🠪 Testing
Windows 🠪 Adjustments 🠪 Issues 🠪 Remote Desktop 🠪 Sercurity 🠪 Slow 🠪 Software 🠪 Startup
Submit Entry | Airin's Notes
Category: Hardware 🠪 Edgerouter ! Tips | May 23, 2022 | Show ARP table: ip neigh show |
Category: Hardware 🠪 Edgerouter Port forwarding via Command Line | May 26, 2022 | configure
edit service nat rule 1
set description HTTPS
set inside-address address 172.16.20.20
set inside-address port 443
set log disable
set protocol tcp
set type destination
set inbound-interface eth+
set destination address 0.0.0.0
set destination port 443
top
edit service nat rule 5001
set description Hairpin_MASQ
set destination address 172.16.20.0/24
set source address 172.16.20.0/24
set log disable
set outbound-interface eth3
set protocol tcp
set type masquerade
top
...<Too long, click to read the rest> |
Category: Hardware 🠪 Edgerouter VPN - L2TP | May 25, 2022 | This will setup a L2TP with preshared key of preshared123, username of username1 and password of password1
configure
set firewall name WAN_LOCAL rule 270 action accept
set firewall name WAN_LOCAL rule 270 description IKE
set firewall name WAN_LOCAL rule 270 destination port 500
set firewall name WAN_LOCAL rule 270 log disable
set firewall name WAN_LOCAL rule 270 protocol udp
set firewall name WAN_LOCAL rule 240 action accept
set firewall name WAN_LOCAL rule 240 description L2TP
set firewall n...<Too long, click to read the rest> |
Category: Hardware 🠪 Edgerouter VPN - OpenVPN | May 23, 2022 | This is the basic procedure to get OpenVPN server working on your Edgerouter.
## Install OpenVPN on Windows using file from this website. If you are going to generate the keys/certificates on this computer, during install make sure you install the Easy RSA scripts.
https://openvpn.net/community-downloads/
## Open Powershell/cmd.exe as Admin
cmd
cd "C:\Program Files\OpenVPN\easy-rsa"
if not exist vars.bat init-config
notepad vars.bat
vars
clean-all
echo Modify the following files to make ...<Too long, click to read the rest> |
Category: Hardware 🠪 Edgerouter VPN - PPTP | May 24, 2022 | This is old VPN technology, I don't recommend using this.
configure
set vpn pptp remote-access authentication mode local
set vpn pptp remote-access authentication local-users username username1 password laksdfjklsjkldf
set vpn pptp remote-access authentication local-users username username2 password abcdabcd
set vpn pptp remote-access client-ip-pool start 172.16.20.200
set vpn pptp remote-access client-ip-pool stop 172.16.20.210
set vpn pptp remote-access dns-servers server-1 4.2.2.2
commit
sav...<Too long, click to read the rest> |
|