본문 바로가기

분류 전체보기190

fortigate 방화벽 ping 옵션 wan -> 구글 ping 진행시 옵션 execute ping-options repeat-count 200 execute ping google.com 200번동안 ping 테스트 2021. 12. 8.
Window 10 firewall inbound ip 차단 윈도우 10 에서 xxx.xxx.---- ip 대역대의 접근을 차단 한다. 라는 가정하에 진행했다. 여러 검색 결과 gui 형태에서 하는건..계속 안된다.. 안되는 사람이 나만 있는건지.. 해외 사이트에서 cmd 창에서 진행 가능한 자료를 찾았다. # 기본적으로 방화벽 설정 ON! 이 되어 있다고 보자! netsh advfirewall firewall add rule name="deny" dir=in action=block remoteip=50.50.50.50 윈도우방화벽-고급설정->인바운드 규칙에 보면 못보던놈이 빨간색으로 표기되어있다. 2021. 12. 1.
Centos 7 iptables 특정 ip, port 접근 제한 iptables -nvL # 설정 확인 # iptables -A INPUT -s xxx.xxx.xxx.xxx -p tcp --dport 8080 -j DROP # iptables -A INPUT -s -p tcp --dport 8080 -j DROP # iptables -A INPUT -s 192.168.1.0/24 -j DROP # 1.x 대역 전체 drop iptables -F INPUT # 설정 초기화 위 세팅은 내꺼에 다른PC 접근 못하게 할때 설정한다. 2021. 10. 27.
Centos 7 firewall 을 통한 접근 금지, 삭제 정책 적용 firewall-cmd --permanent --add-rich-rule="rule family='ipv4' source address='192.168.xxx.xxx' reject" firewall-cmd --reload 정책 삭제 firewall-cmd --permanent --remove-rich-rule="rule family='ipv4' source address='192.168.xxx.xxx' reject" firewall-cmd --reload firewall-cmd --list-all # 정책 확인 2021. 10. 27.