All the RansNet hardware comes with Ethernet interfaces and each interface by default is in routing/Layer-3 mode. If you onboarded the device using default template, the ethernet interfaces will automatically appear on the setting.
Below is a list of common settings available for all interfaces:
enable or disable
ip address setting (mbox support multiple IP addresses per physical or logical interface, for both IPv4 and IPv6 addresses).
MAC address setting. It is possible to change the default MAC address of each interface. Only do this for a specific reason that you’re fully aware of.
MTU size
duplex and speed (physical interface only)
By default, if you onboarded the device using a standard template or have imported CLI, the ethernet interfaces will be shown automatically on the GUI.
Go to "ORCHESTRATOR --> Configuration", click on "Gateway Device" or "Branch Device" depending on the device you're configuring.
Click on the target device MAC address to enter into device edit menu, "Network --> Interfaces" to see the list of existing interfaces.
CLI CONFIGURATION STEPS
Below are the steps to configure ethernet interfaces using CLI
Access to router CLI
Identify the interface that you wish to configure
Enter into interface configuration mode and change specific settings
SUMMARY STEPS (ETHERNET)
enableconfigureinterface ethnumberlink auto/full/half speed (10/100/1000)enable (no enable)mac address new_macip address ip_address/prefix (no ip address ip_address/prefix)mtu new_mtu_sizeCONFIGURATION EXAMPLES
mbox> enablembox#mbox# configurembox(config)# interface eth0mbox(config-if)# enablembox(config-if)# link full 1000 (default link auto)mbox(config-if)# mac address 00:0c:29:7d:f7:79 (change this if ISP require a specific MAC to connect)mbox(config-if)# ip address 203.128.19.100/28 remark "public IP for server 1"mbox(config-if)# ip address 203.128.19.101/28 remark "public IP for server 2"mbox(config-if)# mtu 1500 (optional)mbox(config-if)# exitmbox(config)# ip default-gateway 203.128.19.103mbox# show running-config !interface eth1link full 1000enablemac address 00:0c:29:7d:f7:79ip address 203.128.19.100/28 remark "public IP for server 1"ip address 203.128.19.101/28 remark "public IP for server 2"mtu 1300!ip default-gateway 203.128.19.103!