cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
817
Views
5
Helpful
4
Replies

Restrict certain MAC addresses to access internet

kazarsm
Level 1
Level 1

i want to restrict certain users of the network (WAN) from getting ip address (To restrict internet connection not WAN) from the DHCP server (which is windows server 2008 r2). I need help achieving this with MAC ACLs if possible (other solutions are welcomed). i'm running a Cisco catalyst 2970 switch. 

4 Replies 4

Hello,

 

check if the 2970 supports port ACLs (I think it does):

 

ip access-list extended DENY_UDP_67_68
 deny udp any any eq 67
 deny udp any any eq 68
 permit ip any any

 

interface FastEthernet0/0
 ip access-group DENY_UDP_67_68 in

Okay. I'll try this and give a feedback. Thx

Philip D'Ath
VIP Alumni
VIP Alumni

Why not configure your DHCP server to only give out statically allocated (reserved) addresses?

This is the easiest solution for now. But can't the users just assign an IP address for themselves to avoid the dhcp server (assuming that they know the address range defined) ?