LAN as WAN

From Teltonika Networks Wiki
Network > -Network Control > LAN as WAN

Introduction

This article provides a guide on how to configure the LAN ports as WAN. It can be useful as wired ISP redundant connection or even to change the port for physical damage or a custom mounting.

Configuration overview and prerequisites

Before we begin, let's overview the configuration that we are attempting to achieve and the prerequisites that make it possible.

Prerequisites:

  • One RUTxxx series router (excluding RUT850).
  • At least two wired Internet connections.
  • An end device for test the configuration.

Configuration scheme:

Networking rut955 configuration examples lan port as wan scheme v1.png

WebUI Router configuration

Connect to the router’s WebUI navigate to Network → VLAN → LAN Network and create a new interface by entering name and clicking Add New.

Networking rutxxx configuration examples use lan as wan 1 v3.png

After you clicked Add New new configuration window will pop-up, there you leave as default and press Save.

Networking rutxxx configuration examples use lan as wan 2 v1.png

After saving settings, you will be redirected back to Network → VLAN → VLAN Networks, now you need to open VLAN Network tab in the same window and you will need to:

  • Select VLAN mode: Port based
  • Current LAN interface:
    - Enable wireless access
    - Select your current LAN interface.
    - Turn off LAN port 3 (which will be used as WAN port)
    - Press Save.
  • Note: Make sure that you are not connected to that LAN port which you going to disable.
  • New LAN_WAN interface:
    - Click Add and a new row will appear.
    - Turn off LAN ports 1-2 and leave only LAN port 3 on.
    - Select your newly created interface in the LAN section and click Save.

Networking rutxxx configuration examples use lan as wan 3 v1.png

CLI/SSH Router configuration

For the next part you will be configuring router via SSH. For this you need to use the command line interface (CLI) or a SSH software if you’re using Windows or iOS. In this example software putty will be used. Open putty enter routers LAN IP address and press Open.

Networking rutxxx configuration examples use lan as wan 8 v1.png

After clicking Open you will need to enter router credentials.

  • Login as: root
  • Password: routers admin password (by default admin01)
  • Networking rutxxx configuration examples use lan as wan 9 v1.png

    Now when you are connected you will need to make changes to network settings, this will be achieved via SSH command: vi, which allows you to edit settings in the router. Enter following command in SSH:

    vi /etc/config/network

    Then press the 'I' button on your keyboard to enable editing.

    Using DHCP


    Using the arrow keys on your keyboard, navigate and find config interface 'lan_wan' erase the current configuration and write these options:

    • option proto 'dhcp'
    • option ifname 'eth0.1'
    • option backup '1'
    • option metric '10'
      Networking rutxxx configuration examples use lan as wan 4 v1.png
    • Press the Escape (ESC) button on your keyboard; type :wq and press Enter to close the editor and save the changes.
    • Restart the network service on the router in order to apply the changes by executing this command:
      /etc/init.d/network restart

    • You can exit PuTTY after this return to the WebUI; navigate to the Network → Firewall → General Settings page.
    • Scroll down to the Zone Forwarding section, find source zone: lan_wan.
    • Change Default forwarding action
    • from reject to accept, tick the Masquerading checkbox and save the changes.
      Networking rutxxx configuration examples use lan as wan 6 v1.png

    Using Static IP


    If you're using DHCP, jump to the next section of this guide


    Use the arrow keys to navigate the file and find the config interface 'lan_wan' section. Add these four options to the configuration:

    • option gateway '192.168.10.1'
    • option dns '8.8.8.8'
    • option backup '1'
    • option metric '10'
      Networking rutxxx configuration examples use lan as wan 5 v1.png
    • Press the Escape (ESC) button on your keyboard; type :wq and press Enter to close the editor and save the changes.
    • Restart the network service on the router in order to apply the changes by executing this command:
      /etc/init.d/network restart

    • You can exit PuTTY after this return to the WebUI; navigate to the Network → Firewall → General Settings page.
    • Scroll down to the Zone Forwarding section, find source zone: lan_wan.
    • Change Default forwarding action
    • from reject to accept, tick the Masquerading checkbox and save the changes.
      Networking rutxxx configuration examples use lan as wan 6 v1.png

    Testing the configuration

    If everything went well, your device should now have two wired WAN connections. To test this go to the Network → WAN page and check if the new interface is enabled and if it has an IP address.

    • Set the Wired (WAN) interface as the main WAN connection.
    • Set the new interface as WAN failover and save the changes.
      Networking rutxxx configuration examples use lan as wan 7 v1.png
    • Go to [www.whatsmyip.com] and check your public IP address.
      0011.png
    • Then unplug the main WAN cable and check again. If the interface failed over correctly, the website should a different IP address than before.
      0012.png
    • Plug the main WAN cable back in and wait a bit. Refresh the website; the IP should have change back to the one shown in the first place.