การตรวจสอบ การใช้ port ของ service
Posted: 01 Apr 2019, 15:59
การตรวจสอบ การใช้ port ของ service
วิธีที่ 1
ตัวอย่าง
ตรวจสอบ การใช้ port 4848 บนเครื่องตัวเอง
วิธีที่ 1
ตัวอย่าง
ตรวจสอบ การใช้ port 4848 บนเครื่องตัวเอง
วิธีที่ 1
Code: Select all
telnet "ip" "port"
ตรวจสอบ การใช้ port 4848 บนเครื่องตัวเอง
Code: Select all
telnet 127.0.0.1 4848
Code: Select all
netstat -aon | grep "port"
ตรวจสอบ การใช้ port 4848 บนเครื่องตัวเอง
Code: Select all
netstat -aon | grep 4848