發表文章

目前顯示的是 8月, 2017的文章

Fedora24 NTP

-----部屬NTP伺服器----- 1.安裝套件 # cd 套件所在的資料夾 # dnf install *.rpm 2.設定參數 # vi /etc/ntp.conf 第18行加入 restrict [伺服器IP] mask 255.255.255.0 nomodify notrap 把這些註解 server X.fedora.pool.ntp.org iburst (前面加上井) 然後在下方添加這幾行(w96j0 ) server tock.stdtime.gov.tw server time.stdtime.gov.tw server tick.stdtime.gov.tw 儲存離開 # systemctl start ntpd # systemctl enable ntpd 讓防火牆允許NTP服務 # firewall-cmd --add-service=ntp --permanent # firewall-cmd --reload 3.測試 # ntpq -p  remote           refid      st t when poll reach   delay   offset  jitter ====================================================== *ntp1.jst.mfeed. 133.243.236.17   2 u    1   64    1   18.131    0.228   0.166   ntp2.jst.mfeed. 133.243.236.17   2 u    -   64    1   18.085    0.263   0.137   ntp3.jst.mfeed. 133.243.236.17   2 u    1   64    1   18.124    0.442   0.053  -------------------- -----配置客戶端(FEDORA)----- 1.安裝套件(ntpdate) # cd 套件所在的資料夾 # dnf install *.rpm 2.調整時間 # ntpdate [ntp server ip] ----

Fedora24 SSH

-----啟動SSH服務----- 1.設定參數 開啟終端機登入root # vi /etc/ssh/sshd_config 第49行 PermitRootLogin yes 把yes改成no 第78行 #PermitEmptyPasswords no 把註解取消(拿掉#) # systemctl restart sshd 2.讓防火牆允許SSH服務(防火牆執行下設定) # firewall-cmd --add-service=ssh --permanent # firewall-cmd --reload -------------------- -----配置客戶端SSH服務(FEDORA)----- 1.安裝套件 共有三個(openssh,openssh-client,openssh-server) # cd 套件所在的資料夾 # dnf install *.rpm 2.使用一般用戶連接SSH伺服器 登入遠端ssh伺服器指令 # ssh [username@(hostname or IP address)] EX: # ssh user01@localhost.localdomain 輸入後會詢問是否連線 輸入 yes 輸入密碼 若要登出輸入exit -------------------- -----配置客戶端SSH服務(WINDOWS)----- 安裝PUTTY並執行 輸入SSH伺服器IP PORT22並連線 登入帳號既可 --------------------