| Step 1 |
enable
Example:
|
Enables privileged EXEC mode.
-
Enter your password if prompted.
|
| Step 2 |
configure
terminal
Example:
Router# configure terminal
|
Enters global configuration mode.
|
| Step 3 |
ip
vrf
vrf-name
Example:
Router (config)# ip vrf cisco
|
Configures a VRF table and enters VRF configuration mode.
|
| Step 4 |
rd
route-distinguisher
Example:
Router (config-vrf)# rd 100:1
|
Creates routing and forwarding tables for a VRF instance.
|
| Step 5 |
exit
Example:
Router (config-vrf)# exit
|
Exits VRF configuration mode.
|
| Step 6 |
interface
interface-name
Example:
Router (config)# interface Loopback0
|
Configures an interface and enters interface configuration mode.
|
| Step 7 |
ip
vrf
forwarding
vrf-name
Example:
Router (config-if)# ip vrf forwarding cisco
|
Configures a VRF for the interface.
|
| Step 8 |
ip
address
ip-address
mask
[secondary]
Example:
Router (config-if)# ip address 10.0.0.2 255.0.0.0
|
Sets a primary or secondary IP address for an interface.
|
| Step 9 |
exit
Example:
|
Exits interface configuration mode.
|
| Step 10 |
aaa
group
server
tacacs+
group-name
Example:
Router (config)# aaa group server tacacs+ tacacs1
|
Groups different TACACS+ server hosts into distinct lists and distinct methods and enters server-group configuration mode.
|
| Step 11 |
server-private
{ip-address | name} [nat] [single-connection] [port port-number] [timeout seconds] [key [0 | 7] string]
Example:
Router (config-sg-tacacs+)# server-private 10.1.1.1 port 19 key cisco
|
Configures the IP address of the private TACACS+ server for the group server.
|
| Step 12 |
ip
vrf
forwarding
vrf-name
Example:
Router (config-sg-tacacs+)# ip vrf forwarding cisco
|
Configures the VRF reference of a AAA TACACS+ server group.
|
| Step 13 |
ip
tacacs
source-interface
subinterface-name
Example:
Router (config-sg-tacacs+)# ip tacacs source-interface Loopback0
|
Uses the IP address of a specified interface for all outgoing TACACS+ packets.
|
| Step 14 |
exit
Example:
Router (config-sg-tacacs)# exit
|
Exits server-group configuration mode.
|