A10 Networks Proprietary Information. All Rights Reserved. © Copyright 2018, A10 Networks, Inc.Configure the Management InterfaceIn the factory default configuration, the management interface has the IP address 172.31.31.1/24. And make sure to use a console connection.To configure the management interface:1. Configure the management interface IP address and default gateway. The example below shows the CLI commands to set the management IP address to 192.168.2.228:$ sudo su# cat /etc/sysconfig/network-scripts/ifcfg-br0 | grep -v "IPADDR" | grep -v "NETMASK" | grep -v "GATEWAY" > /tmp/interface# echo "IPADDR=192.168.2.228" >> /tmp/interface# echo "NETMASK=255.255.255.0" >> /tmp/interface# echo "GATEWAY=192.168.2.1" >> /tmp/interface# mv -f /tmp/interface /etc/sysconfig/network-scripts/ifcfg-br0# rm -rf /tmp/interface# systemctl restart network2. Use the show interfaces management command to verify that the IP address is configured correctly.# ip addr show dev br0Change the Admin PasswordAfter the initial login, it is highly recommended that you secure access to your device by changing the default password.$ passwdChanging password for user admin.Changing password for admin.(current) UNIX password:New password:Retype new password:passwd: all authentication tokens updated successfully.$