팝업레이어 알림

팝업레이어 알림이 없습니다.

Memory

HOME > 공지사항

CentOS 라즈베리파이 ping 응답 안하게 하려면 1글자만 수정하세요

페이지 정보

profile_image
작성자 최고관리자
댓글 0건 조회 21,270회 작성일 22-09-19 12:31

본문

ping 응답 안하게 하려면 아래 명령어 실행 후 0  --> 1로 변경하면 됩니다.  

vi /proc/sys/net/ipv4/icmp_echo_ignore_all 

또는 

nano /proc/sys/net/ipv4/icmp_echo_ignore_all


84c079e378aa5cfa6d57eddcf9d045d3_1663558231_1434.png



84c079e378aa5cfa6d57eddcf9d045d3_1663558255_4667.png 


ubuntu 22.04 centos7 의 경우

nano /etc/sysctl.conf 파일 하단에 아래 설정값을 입력하고 저장시키면 됩니다

net.ipv4.icmp_echo_ignore_all=1


리부팅 없이 임시 적용을 하려면 아래 명령어로 입력하세요

/sbin/sysctl -w net.ipv4.icmp_echo_ignore_all=1 


명령어 참조함 --> https://webstone.tistory.com/85 

1 service

                    기능                                       CentOS 6                                        CentOS 7

서비스 상태보기service 서비스명 statussystemctl status 서비스명
서비스 시작service 서비스명 startsystemctl start 서비스명
서비스 정지service 서비스명 stopsystemctl stop 서비스명
서비스 재시작service 서비스명 restartsystemctl restart 서비스명
서비스 리로드service 서비스명 reloadsystemctl reload 서비스명

2 chkconfig

                   기능                                       CentOS 6                                        CentOS 7

자동시작 확인chkconfig 서비스명systemctl is-enabled 서비스명
자동시작 설정chkconfig 서비스명 onsystemctl enable 서비스명
자동시작 해제chkconfig 서비스명 offsystemctl disable 서비스명

3 방화벽

                  기능                                            CentOS 6                                     CentOS 7

방화벽 중지service iptables stopsystemctl stop firewalld
방화벽 시작service iptables startsystemctl start firewalld
방화벽 자동시작 해제chkconfig iptables offsystemctl disable firewalld
방화벽 자동시작 적용chkconfig iptables onsystemctl enable firewalld

 

댓글목록

등록된 댓글이 없습니다.