"Enter"a basıp içeriğe geçin

Mikrotik VPN Engelleme

Mikrotik VPN Engelleme

Mikrotik VPN kullanıcılarını engellemeniz için kullanabilirsiniz. Ayrıca bu yöntem ile Hotspot shield , ultra surf , open vpn gibi programlarıda engellemiş olursunuz

/ip firewall filter
add action=drop chain=forward comment="DROP VPN / PPTP" disabled=no \
    protocol=gre

veya aşagıdaki kodları kullanabilirsiniz

/ip firewall address-list
add address=192.168.100.100 disable=no list=Allowed-pptp
 
/ip firewall filter
add action=drop chain=forward comment="DROP VPN / PPTP" disabled=no \
    protocol=gre src-address-list="Allowed-pptp"