Page 1 of 1

การตรวจสอบ การใช้ port ของ service

Posted: 01 Apr 2019, 15:59
by brid.surapol
การตรวจสอบ การใช้ port ของ service

วิธีที่ 1

Code: Select all

telnet "ip" "port"
ตัวอย่าง
ตรวจสอบ การใช้ port 4848 บนเครื่องตัวเอง

Code: Select all

telnet 127.0.0.1 4848
วิธีที่ 1

Code: Select all

netstat -aon | grep "port"
ตัวอย่าง
ตรวจสอบ การใช้ port 4848 บนเครื่องตัวเอง

Code: Select all

netstat -aon | grep 4848