Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cannot remove dot1x entry

Status
Not open for further replies.

chudchud

Technical User
Jul 7, 2010
2
hello, i am a new user so i apologize if my questions are too simple.

i have a cisco router and the fastethernet2/10 port has the following entries:

switchport mode access vlan 100
dot1x port-control force-unauthorized

i am having trouble removing the dot1x entry.

any ideas or tips how i can remove this as this is not needed?
 
You sure this is a router? Usually dot1x is done on a switch.

To remove most IOS commands, just put "no" in front of the original command.

Switch(config)#interface f2/10
Switch(config-if)#no dot1x port-control force-unauthorized

You can also just default the entire interface if you want and restore the vlan assignment:

Switch(config)#default interface f2/10
Switch(config)#interface f2/10
Switch(config-if)#switchport host
Switch(config-if)#switchport access vlan 100

HTH
 
hi, thank you for the quick reply. i'm pretty sure that this is a router.

the "no dot1x port-control force-unauthorized" command does not work.

i tried to default the interface as well and it produced an error at the "^".

dot1x port-control force-unauthorized
^

the interface did get deleted however the "dot1x..." line did not.

any other ideas?
 
Post the output from a show run and show version please.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top