일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- centos
- observium 설정
- prometheus grafana 연동
- wazuh 취약점 점검
- grafana esxi 모니터링
- 특정 도메인 url rewrite
- http 리디렉션
- FortiGate
- Node Exporter 설치 및 연동
- URL 재작성
- wazuh 설치
- iis url rewrite
- grafana vsphere
- telegraf esxi 모니터링
- wazuh 서버 설치
- grafana esxi
- ubuntu 22.04+Prometheus+Grafana+Node Exporter
- IBM X3550 M4
- grafana esxio
- telegraf influxdb
- piolink
- grafana
- https 자동전환
- Prometheus
- wazuh agent 설치
- grafana telegraf influxdb esxi 모니터링
- grafana vcenter
- MSCS
- IIS https 무한루프
- grafana esxi monitoring
- Today
- Total
IDC 엔지니어의 기술 이야기
CentOS Bonding 본문
환경 : CentOS release 6.10 (Final)
오래만에 Bonding 할일이 생겼다. 최신 OS가 아닌 오래된 CentOS에
기억을 더듬고 구글신의 도움을 받아 설정 했다
[root@test]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
TYPE=Ethernet
#HWADDR=1C:98:EC:13:F4:30
#UUID=8dc80ee4-2a5d-4fe0-bcdd-5fa9034d790d
#NM_CONTROLLED=no
>> eth1도 동일하게 셋팅
[root@test]# vi /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0
BOOTPROTO=none
ONBOOT=yes
TYPE=Ethernet
IPADDR=192.168.10.10
NETMASK=255.255.255.0
GATEWAY=192.168.10.1
BONDING_OPTS='mode=1 miimon=100 primary=eth0'
[root@test]# vi /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=test
GATEWAYDEV=bond0
[root@test]# vi /etc/modprobe.d/bonding.conf
alias bond0 bonding
options bond0 mode=1 miimon=100 primary=eth0
[root@test]# modprobe bonding
** Static Routing
[root@web ~]# vi /etc/sysconfig/network-scripts/route-bond1
ADDRESS0=192.168.170.0 // Static 라우팅 해야될 주소
NETMASK0=255.255.255.0 // Static 라우팅 해야될 주소의 넷마스크
GATEWAY0=192.168.160.1 // Static 라우팅 할 Gateway 주소
'OS_APP > Linux' 카테고리의 다른 글
ubuntu wireshark 설치 및 사용기 (0) | 2023.07.03 |
---|---|
CentOS 7 DRBD + Oracle + PCSD + Corosync + Pacemaker 설치 및 운영 (0) | 2019.12.30 |
Linux Bind named.conf 및 Zone 이상유무 체크 (0) | 2019.06.17 |
SSH 접속 느려짐 (0) | 2019.02.26 |