00 前提
主機間的關係
- xx:崗位碼
- Host-xx(192.168.x.1[Eth0]) < == > vGate-xx(192.168.x.254[Eth0] &
10.19.x.1[Eth1]) < == > Internet-xx (10.19.x.2[Eth1])
vGate-xx(Fedora)網卡設定
- DNS Server:192.168.x.1(Host-xx)
- Eth0(enp0s3)==>Host-xx:
- IP:192.168.x.254
- Network Mask: 255.255.255.0
- Gateway: 192.168.1.254
- Eth1(enp0s8)==>Internet-xx:
- IP:10.19.x.1
- Network Mask: 255.255.255.252
- Gateway: 10.19.x.1
01 Linux終端機使用方法
- nano用法:
- Ctrl+O=
save File
(存檔)
- Ctrl+X=
exit nano
(離開 nano)
- 權限
sudo [需下的指令]
: 向系統借用暫時的最高權限
su [username]
: 切換使用者
- 畫面管理部分
- 預設呈現部分:
[目前使用的使用者@目前主機 ~]# (指令)
clear
:清除終端機畫面
- Ctrl + Alt + F
1~7
: tty1~7
(終端機)
02 啟用 root 帳戶
03 主機名更改
- 使用root帳戶:
[user@localhost ~]# su -
- 更改Hostname:
[root@localhost ~]# hostnamectl set-hostname vGate-xx
- 輸出更改後的Hostname:
[root@localhost ~]# hostname
04 新增群組
[root@localhost ~]# groupadd Feuser
05 大量新增使用者
06 限制特定群組或者root不能進去圖形化介面(GDM)
- 需修改GDM的設定檔(增加指令):
[root@localhost ~]# nano /etc/pam.d/gdm-password
加入的內容部分
07 設定 “Command history”=只存5筆記錄
- 需修改的檔案: /etc/profile.d/custom.sh
[root@localhost ~]# nano /etc/profile.d/custom.sh
- 內容:
HISTSIZE=5
- 立即生效 “Command history”=只存5筆記錄:
[root@localhost ~]# source /etc/profile.d/custom.sh
- 檢視”Command history”的指令:
[root@localhost ~]# history
08 Port Forwarding (網路転發設定)