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

Post Reply
brid.surapol
Posts: 156
Joined: 11 Apr 2013, 11:43

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

Post 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
Post Reply

Return to “การใช้งาน Linux”