달력

112024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
※ RHEL7.x / CentOS7.x Command
systemctl list-unit-files
systemctl list-units --type service --all
-> chkconfig 유사, enabled가 현재 실행 중인 서비스
 
systemctl enable tuned
systemctl disable tuned
firewall-cmd --list-all
 
- HOSTNAME 설정 -
hostnamectl set-hostname SIEM-GM --static    // 대소문자 구분 필요시
hostnamectl set-hostname SIEM-GM                // 소문자로 설정
-> 설정파일 : /etc/hostname
 
1. 사용 서비스 설정 및 불 필요 서비스 중지
systemctl stop NetworkManager
systemctl disable NetworkManager
 
systemctl stop firewalld
systemctl disable firewalld
 
systemctl start rc-local.service
systemctl enable rc-local.service
chmod 744 /etc/rc.d/rc.local
 
lscpu로 확인 시 CPU Mhz가 최대 속도보다 작게 표시 될 경우
systemctl stop cpupower.service
systemctl disable cpupower.service
 
2. NIC Renameing
- ifcfg-enp 형식 파일을 ifcfg-ethX 파일로 변경
- ifcfg-ethX 파일 내 Device 명 변경
- /etc/udev/rules.d/70-persistent-net.rules 파일 생성
SUBSYSTEM=="net.", ACTION=="add", DRIVERS=="?*", ATTR{address}=="$(cat /sys/class/net/ens33/address)", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="enp*", NAME="eth0"
 
==================================================
cat > /etc/udev/rules.d/99-rename-to-eth0.rules << EOF
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="$(cat /sys/class/net/ens33/address)", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="enp*", NAME="eth0"
EOF
==================================================
- systemctl restart systemd-udev-trigger.service
- init 6로 재부팅 
 
 
 
KERNEL=="eth*", ID=="0000:00:03.0", NAME="eth0"
 
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="08:00:27:cf:27:19", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="enp*", NAME="eth0"
 
NAME="eth1"
DEVICE="eth1"
ONBOOT=yes
#UUID="2e7d18a4-2dcb-4ceb-b73b-fe44db42f571"
BOOTPROTO=none
IPADDR=192.168.56.200
NETMASK=255.255.255.0
 
 
### NIC 순서 확인 ###
 
# dmesg | grep rename | awk '{print $9}' | sort
eno1
eno2
eno3
enp3s0f0
ens4f0
ens4f1
ens5f0
ens5f1
ens5f2
ens5f3
ens7f0
ens7f1
ens8f0
ens8f1
ens8f2
ens8f3
 
ethtool -i ethX
모듈명으로 확인
-> tg3은 ifup 이후
 
 
Posted by 짜꾸미의골골몽
|