User Guide: AWC plug-in version 3.13.1 for VST-APL

Configure TQ6702 GEN2-R via CLI



Configure settings on the TQ6702 GEN2-R (wireless AP router), such as creating a user account and bridges, AMF settings, etc., using the CLI.
After registering for the AWC Plug-in, configuration changes from the individual TQR series Web GUI and CLI are not supported.

Login

  1. Log in to the wireless AP router CLI with a privileged user account (user with privilege level 15).
  2. Shift to Privileged EXEC mode.
    awplus> enable
    awplus# 
    
  3. Shift from Privileged EXEC mode to Global Configuration mode.
    awplus# configure  terminal
    Enter configuration commands, one per line.  End with CNTL/Z.
    awplus(config)# 
    
    * The prompts and command responses are omitted hereafter.

Basic configuration

Configure the hostname, and create a user account for management from the AWC Plug-in.
  1. Configure the node name (or host name). To do this, use the "hostname" command.
    At this time, please be careful not to use the same name for all other nodes (in case of duplication, one of the node names will be forced to be changed). Also note that the node name is case-sensitive.
    hostname TQ6702_GEN2-R-1
    

  2. Create a user account with the privilege level 15 to allow the AWC Plug-in to manage the AP. To do this, use the "username" command.
    username awcadmin privilege 15 password naisho!
    

Bridge Configuration

  1. Create the software bridge 1, 2, and 3. To do this, use the "bridge" command.
    bridge 1
    bridge 2
    bridge 3
    

  2. Set the IP address and netmask notified by the administrator of the upper network to WAN port eth1.
    Note
    When registering the wireless AP router under the management of the AWC plug-in, use eth1 port for the connection to the AMF network. You cannot register the router via eth2 port.
    In conjunction, create an 802.1Q Ethernet subinterface to allow VLAN tagged packets with VLAN IDs 10, 20, and 100 to pass through.
    This involves using the ip address and encapsulation dot1q commands.
    interface eth1
     ip address 192.168.1.200/24
     encapsulation dot1q 10
     encapsulation dot1q 20
     encapsulation dot1q 100
    
    Three 802.1Q Ethernet subinterfaces eth1.10, eth1.20, and eth1.100 are created.

  3. Assign each 802.1Q Ethernet subinterface to a bridge.
    interface eth1.10
     bridge-group 1
     
    interface eth1.20
     bridge-group 2
     
    interface eth1.100
     bridge-group 3
    

  4. Direct the default route to the default gateway notified by the administrator. To do this, use the "ip route" command.
    ip route 0.0.0.0/0 192.168.1.1
    

AMF Configuration

  1. Specify the AMF network name "AMF001".
    atmf network-name AMF001
    

  2. Create an AMF link on the eth1 interface to connect to the AMF master.
    interface eth1
     atmf-link
    
    When the AMF virtual link is correctly communicated with the AMF master, the AMF network participation logs are displayed.

  3. This completes the configuration of the wireless router.
    end
    

Save the Configuration

After configuration is complete, save the current settings as a startup configuration. To do this, execute the copy command in the format "copy running-config startup-config".
awplus# copy running-config startup-config
Building configuration...
[OK]
The same can also be done with the "write file" and "write memory" commands.
awplus# write memory
Building configuration...
[OK]

Configuration Example

The following is an example of a configuration set up in this quick tour.
!
hostname TQ6702_GEN2-R-1
!
username awcadmin privilege 15 password naisho!
!
bridge 1
bridge 2
bridge 3
!
interface eth1
 encapsulation dot1q 10
 encapsulation dot1q 20
 encapsulation dot1q 100
 ip address 192.168.1.200/24
 atmf-link
!
interface eth1.10
 bridge-group 1
!
interface eth1.20
 bridge-group 2
!
interface eth1.100
 bridge-group 3
!
ip route 0.0.0.0/0 192.168.1.1
!
atmf network-name AMF001
!
end

29 Apr 2025 14:51