How to manually change WAN IP
Before you being you will need the following information:
- STATIC WAN IP
- SUBNET
- GATEWAY
To do this:
- Download putty to your PC
- Open an SSH tunnel to 192.168.10.1 port 98 using putty
- Login using ‘password’
- From the CLI manually type each line:
- uci set network.wan.proto=’static’;
- uci set network.wan.ipaddr=’WAN IP’;
- uci set network.wan.netmask=’SUBNET’;
- uci set network.wan.gateway=’GATEWAY’;
- uci set kibosh_private.main.force_config_send=”1″
- uci commit
- reboot
- Reboot
The entire process should take about 10 min.
VI commands: i = insert, esc = break from insert, :q! = quit without saving, :wq = write (i.e. save) and quit