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 Plus 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
- Log in to the wireless AP router CLI with a privileged user account (user with privilege level 15).
- Shift to Privileged EXEC mode.
awplus> enable awplus#
- 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.- 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
- 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
- Create the software bridge 1, 2, and 3. To do this, use the "bridge" command.
bridge 1 bridge 2 bridge 3
- Set the IP address and netmask notified by the administrator of the upper network to WAN port eth1.
Note
In conjunction, create an 802.1Q Ethernet subinterface to allow VLAN tagged packets with VLAN IDs 10, 20, and 100 to pass through.When registering the AT-TQR series under the management of the AWC Plug-in, use only eth1 for connection to the AMF Plus network. If you try to connect to the AMF Plus network via eth2, you will not be able to register under the control of the AWC Plug-in.
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.
- 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
- 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 Plus Configuration
- Specify the AMF Plus network name "AMF001".
atmf network-name AMF001
- Create an AMF link on the eth1 interface to connect to the AMF Plus master.
interface eth1 atmf-link
When the AMF link is correctly communicated with the AMF Plus master, the AMF Plus network participation logs are displayed.
- 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
10 Nov 2025 11:47