본문 바로가기

Port4

tomcat 2개 / tomcat port 다르게 여러개 22 .. 69 .. 117 2021. 6. 25.
CentOS port open / RHEL/CentOS 7 방화벽(firewalld) 설정 RHEL/CentOS 7 방화벽(firewalld) 설정 콘솔 : firewall-cmd x-windows : firewall-config 1.설치 yum -y install firewalld 2. 서비스 시작 및 활성화 systemctl start firewalld systemctl enable firewalld 3. 서비스 종료 systemctl stop firewalld 4. firewalld 재시작 firewall-cmd --reload 5.방화벽에 포트추가 firewall-cmd --permanent --zone=public --add-port=80/tcp firewall-cmd --permanent --zone=public --add-port=8080/tcp ※ firewalld 재시작해야 반.. 2020. 4. 27.
windows / port / PID / netstat windows 사용중인 port와 PID 확인 C:\Users\Administrator>netstat -ano 활성 연결 프로토콜 로컬 주소 외부 주소 상태 PID TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4012 TCP 0.0.0.0:135 0.0.0.0:0 LISTENING 784 TCP 0.0.0.0:445 0.0.0.0:0 LISTENING 4 TCP 0.0.0.0:990 0.0.0.0:0 LISTENING 3508 TCP 0.0.0.0:1978 0.0.0.0:0 LISTENING 3516 TCP 0.0.0.0:6160 0.0.0.0:0 LISTENING 1384 TCP 0.0.0.0:8009 0.0.0.0:0 LISTENING 4012 TCP 0.0.0.0:17500 0.0.. 2020. 4. 24.
ssh / port 수정 sshd port 수정 [CentOS 6.x] vi /etc/ssh/sshd_config Port 포트번호 service sshd restart 방화벽 해당port추가 vi /etc/sysconfig/iptables -A INPUT -m state –state NEW -m tcp -p tcp –dport 포트번호 -j ACCEPT service iptables restart [CentOS 7.x] vi /etc/ssh/sshd_config ... #Port 22 Port 새로운 포트번호 ... service sshd restart 방화벽 해당port추가 firewall-cmd --permanent --zone=public --add-port=5050/tcp 방화벽 재시작 firewall-cmd --rel.. 2020. 4. 17.
반응형