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

Disabling the web interface

djmupster
Level 1
Level 1

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
Level 1
Level 1

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 4
Level 4

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

andyhp1
Level 1
Level 1

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