Fedora 18 방화벽 설정

1387 단어 linuxfedorafirewalld
매 뉴 얼 보기
man firewalld
 
프로필
기본 설정 파일 은 / usr / lib / firewalld 에 있 습 니 다.
시스템 프로필 은 / etc / firewalld 에 있 습 니 다.
 
서비스 파일
xml 서비스 파일 을 참고 하여 서 비 스 를 추가 하거나 기 존 서비스 에 포트 를 추가 합 니 다.
예 를 들 어 smtp 서비스 가 tcp 25 포트 를 엽 니 다.
[root@localhost ~]# cat /usr/lib/firewalld/services/smtp.xml 
<?xml version="1.0" encoding="utf-8"?>
<service>
  <short>Mail (SMTP)</short>
  <description>This option allows incoming SMTP mail delivery. If you need to allow remote hosts to connect directly to your machine to deliver mail, enable this option. You do not need to enable this if you collect your mail from your ISP's server by POP3 or IMAP, or if you use a tool such as fetchmail. Note that an improperly configured SMTP server can allow remote machines to use your server to send spam.</description>
  <port protocol="tcp" port="25"/>
</service>
[root@localhost ~]#

 
서비스 추가
임시 증가
firewall-cmd --zone=public --add-service=smtp
영구 증가
firewall-cmd --permanent --zone=public --add-service=smtp
 
살펴보다
지역 서비스 보기
firewall-cmd --list-all-zones
 
방화벽 열 린 포트 보기
iptables -L -n
 
보 이 는 것 은 INZONE_public_allow 구역 에서 tcp 25 포트 허용
 
 

좋은 웹페이지 즐겨찾기