Hallo,
Maybe I should give you a more detailed instruction. This commands are not global but applied to an interface. You probably see them under an interface. The command to set the default values assuming we have non default values for mac-based on port 5.
Aruba-2930F-8G-PoEP-2SFPP(config)# show run int 5
Running configuration:
interface 5
untagged vlan 1
aaa port-access mac-based logoff-period 8624000
aaa port-access mac-based quiet-period 30
exit
Aruba-2930F-8G-PoEP-2SFPP(config)#
Aruba-2930F-8G-PoEP-2SFPP(config)# aaa port-access mac-based 5 logoff-period 300
Aruba-2930F-8G-PoEP-2SFPP(config)# aaa port-access mac-based 5 quiet-period 60
Aruba-2930F-8G-PoEP-2SFPP(config)# show run int 5
Running configuration:
interface 5
untagged vlan 1
exit
Aruba-2930F-8G-PoEP-2SFPP(config)#
------------------------------
Emil Gogushev
------------------------------
Original Message:
Sent: Mar 16, 2022 02:31 AM
From: Sebastian Küstner
Subject: Remove All AAA Config From a Port
Tried to remote the following parameter without any success.
aaa port-access authenticator quiet-period 0
aaa port-access authenticator logoff-period 862400
aaa port-access mac-based logoff-period 862400
aaa port-access mac-based quiet-period 30
The NO aaa port-acces authenticator quiet-period/logoff-period interfacenumber doesnt work.
Also tried to disable it on the config mode of the interface
Any ideas?
Original Message:
Sent: Oct 12, 2021 11:36 AM
From: geoffrey Lepers
Subject: Remove All AAA Config From a Port
Hi Emil_G,
Thanks, it's works.
------------------------------
Glepers
Original Message:
Sent: Oct 12, 2021 11:21 AM
From: Emil Gogushev
Subject: Remove All AAA Config From a Port
Hello,
Since the default setting for controlled-direction is "both", you can remove this line from the running config by setting it to both. However you should keep in mind that this setting can only be changed if the port still has authentication enabled on it. If the authentication was already removed the change will fail with the error "Port is not configured with any Authentication."
Here an example
Aruba-Stack-3810M(config)# aaa port-access mac-based 1/1
Aruba-Stack-3810M(config)# aaa port-access 1/1 controlled-direction in
Aruba-Stack-3810M(config)# show run int 1/1
Running configuration:
interface 1/1
untagged vlan 1
aaa port-access mac-based
aaa port-access controlled-direction in
exit
Aruba-Stack-3810M(config)#
Aruba-Stack-3810M(config)# no aaa port-access mac-based 1/1
Aruba-Stack-3810M(config)# aaa port-access 1/1 controlled-direction both
Port 1/1 is not configured with any Authentication.
You should first set the controlled direction to both and after that remove authentication from the port. Here I am re-enabling mac-based authentication on the port
Aruba-Stack-3810M(config)# aaa port-access mac-based 1/1
And then I am able to set the controlled direction to the default setting of both and remove authentication.
Aruba-Stack-3810M(config)# aaa port-access 1/1 controlled-direction both
Aruba-Stack-3810M(config)# no aaa port-ac mac-based 1/1
Now the command is accepted and the port has the default configuration.
Aruba-Stack-3810M(config)# show run int 1/1
Running configuration:
interface 1/1
untagged vlan 1
exit
------------------------------
Emil Gogushev
Original Message:
Sent: Oct 12, 2021 07:58 AM
From: geoffrey Lepers
Subject: Remove All AAA Config From a Port
Hi,
How can I remove this command : aaa port-access 5 controlled-direction in ?
------------------------------
Glepers
Original Message:
Sent: Nov 08, 2019 11:27 AM
From: Phil M
Subject: Remove All AAA Config From a Port
We partially scripted it and just use this as a template:
no aaa port-access xxx mixed
no aaa port-access mac-based xxx
no aaa port-access authenticator xxx client-limit
no aaa port-access authenticator xxx
no port-security xxx
no spanning-tree xxx root-guard bpdu-protection
int xxx
name "xxx"
untagged vlan xx
ip source-lockdown
disable
enable
exit
TBB