cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
6108
Views
0
Helpful
2
Replies

Disabling the web interface

djmupster
Community Member

Is it possible to disable the web interface on the MDS switches? If so do you know the commands?

Cheers

Richard

1 Accepted Solution

Accepted Solutions

andyhp1
Community Member

You can use ACLs. The Cisco cook book has details. The commands will be something like,

mds-11-03# config t

Enter configuration commands, one per line. End with CNTL/Z.

mds-11-03(config)# ip access-list nohttp deny tcp any any eq port 80

mds-11-03(config)# ip access-list nohttp deny tcp any any eq port 443

mds-11-03(config)# ip access-list nohttp permit ip any any

mds-11-03(config)# interface mgmt0

mds-11-03(config-if)# ip access-group nohttp in

mds-11-03(config-if)# end

View solution in original post

2 Replies 2

colin.mcnamara
Level 5
Level 5

You should be able to apply an access list filtering this traffic to the mgmt interface.

andyhp1
Community Member

You can use ACLs. The Cisco cook book has details. The commands will be something like,

mds-11-03# config t

Enter configuration commands, one per line. End with CNTL/Z.

mds-11-03(config)# ip access-list nohttp deny tcp any any eq port 80

mds-11-03(config)# ip access-list nohttp deny tcp any any eq port 443

mds-11-03(config)# ip access-list nohttp permit ip any any

mds-11-03(config)# interface mgmt0

mds-11-03(config-if)# ip access-group nohttp in

mds-11-03(config-if)# end

Review Cisco Networking for a $25 gift card