Configurando a interface para 1Gbps
<these commands were used to set the cogent fiber interface to 1Gbps full duplex which was necessary to for the connection to work but was not an option in the gui⦠every time you make a change to this interface in the gui you will need to run these commands again in cli>
set interfaces ethernet eth3 speed 1000
set interfaces ethernet eth3 duplex full
<these commands were used to restrict inbound access to all of DR from a Deny Group>
set firewall group network-group DENY_GROUP network 209.x.x.0/24
set firewall name DENY_TRAFFIC default-action accept
set firewall name DENY_TRAFFIC description 'IPv4 inbound traffic'
set firewall name DENY_TRAFFIC enable-default-log
set firewall name DENY_TRAFFIC rule 10 action drop
set firewall name DENY_TRAFFIC rule 10 description 'Deny traffic from select IPs'
set firewall name DENY_TRAFFIC rule 10 log enable
set firewall name DENY_TRAFFIC rule 10 protocol all
set firewall name DENY_TRAFFIC rule 10 source group network-group DENY_GROUP
set interfaces ethernet eth1 firewall in name DENY_TRAFFIC
set interfaces ethernet eth3 firewall in name DENY_TRAFFIC