Video stream url for VLC/DVR:
- rtsp://192.168.1.93:554/user=admin&password=&channel=&stream=.sdp?real_stream--rtp-caching=100
Telnet access
- telnet 192.168.1.10 23
- Localhost login: root
- Password: xmhdipc
| #!/bin/sh | |
| # references | |
| # NVRAM reference = https://wiki.dd-wrt.com/wiki/index.php/Switched_Ports | |
| # Original Script Reference = https://gist.github.com/Jimmy-Z/6120988090b9696c420385e7e42c64c4 | |
| # Forked Script Reference = https://gist.github.com/tubaxiaosiji/d6c969797e470aa3eadfbfd6a966aa60 | |
| # This Script = https://gist.github.com/b1tman1ac/3d2cad0094e78a587f217a0720c9c11c | |
| # multi SSID with VLAN script, for ASUS AC3100(4 port model + WAN port) with Merlin | |
| # |
| #!/bin/sh | |
| # multi SSID with VLAN script, for ASUS AC86U with merlin | |
| # | |
| # setup before hand: | |
| # set "router" to "AP Mode" | |
| # this will put all ports and wireless in br0 | |
| # create 2 guest network | |
| # enable Administration => System => Enable JFFS custom scripts and configs | |
| # put this script in /jffs/scripts/, name should be "services-start" |
| # Basic Strongswan ikev2 server setup | |
| * paltform: atlantic.net ubuntu 14.04 x64 | |
| * the commands below are run with root account | |
| ## Strongswan | |
| ``` | |
| apt-get install strongswan | |
| apt-get install iptables iptables-persistent | |
| ``` |