作者 | Kerneltalks
譯者 | LCTT / MjSeven
這篇文章將幫助你瞭解 Linux 中 /etc/services
檔案,包括它的內容,格式以及重要性。
Internet 守護程式(ineted
)是 Linux 世界中的重要服務。它藉助 /etc/services
檔案來處理所有網路服務。在本文中,我們將向你介紹這個檔案的內容,格式以及它對於 Linux 系統的意義。
/etc/services
檔案包含網路服務和它們對映埠的串列。inetd
或 xinetd
會檢視這些細節,以便在資料包到達各自的埠或服務有需求時,它會呼叫特定的程式。
作為普通使用者,你可以檢視此檔案,因為檔案一般都是可讀的。要編輯此檔案,你需要有 root 許可權。
$ ll /etc/services
-rw-r--r--. 1 root root 670293 Jun 7 2013 /etc/services
/etc/services 檔案格式
service-name port/protocol [aliases..] [#comment]
最後兩個欄位是可選的,因此用 [
]
表示。
其中:
service-name
是網路服務的名稱。例如 telnet[1]、ftp[2] 等。port/protocol
是網路服務使用的埠(一個數值)和服務通訊使用的協議(TCP/UDP)。alias
是服務的別名。comment
是你可以新增到服務的註釋或說明。以 #
標記開頭。/etc/services 檔案示例
# 每行描述一個服務,形式如下:
#
# service-name port/protocol [aliases ...] [# comment]
tcpmux 1/tcp # TCP port service multiplexer
rje 5/tcp # Remote Job Entry
echo 7/udp
discard 9/udp sink null
在這裡,你可以看到可選的最後兩個欄位的用處。discard
服務的別名為 sink
或 null
。
via: https://kerneltalks.com/linux/understanding-etc-services-file-in-linux/
作者:kerneltalks[4] 選題:lujun9972 譯者:MjSeven 校對:wxy
本文由 LCTT 原創編譯,Linux中國 榮譽推出