Hi All,
We're trying to lock down our remaining Windows XP machines to minimise our exposure to unsupported OS, and one thing we're considering is a dedicated VLAN with an ACL that allows only specific traffic through to specific servers (DNS, LDAP, AV updates, Windows File Transfer, WSUS for reporting) - so far I've got this but as PT is not great at testing different ports I was hoping to get some feedback before i stick it on the core and break something:
ip access-list extended WINXP
permit tcp 172.16.233.0 0.0.0.255 host SOPHOS eq 80
permit tcp 172.16.233.0 0.0.0.255 host SOPHOS eq 137
permit tcp 172.16.233.0 0.0.0.255 host SOPHOS eq 138
permit tcp 172.16.233.0 0.0.0.255 host SOPHOS eq 139
permit tcp 172.16.233.0 0.0.0.255 host SOPHOS eq 445
permit tcp 172.16.233.0 0.0.0.255 host DNS eq 53
permit tcp 172.16.233.0 0.0.0.255 host DCG eq 389
permit tcp 172.16.233.0 0.0.0.255 host FILESERVER eq 445
permit tcp 172.16.233.0 0.0.0.255 host FILESERVER eq 139
permit tcp 172.16.233.0 0.0.0.255 host WSUS eq 8530
deny ip any any
int vlan x
ip access-group WINXP in
Any suggestions/feedback would be appreciated.