일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hardening
- docker
- miniconda
- xe guest utilities
- ssh key 배포
- ansible
- ELASTIC
- elastic stack
- x-pack
- macos
- proxycfg
- Kibana server is not ready yet
- bash
- Proxy
- endpoint security
- XCP-ng
- pfsense
- centos 8
- application security
- 한글가이드
- Windows
- PlayBook
- Elasticsearch
- 보안양파
- freebsd
- 로그인불가
- Kibana
- G-suite
- GitLab
- Today
- Total
선 밖에 선 자유인
securityonion IDS 구축 시 eth1 설정 본문
# vi /etc/network/interface
auto lo
iface lo inet loopback
# Management interface using DHCP (not recommended due to Bro issue described above)
auto eth0
iface eth0 inet dhcp
# OR
# Management interface using STATIC IP (instead of DHCP)
auto eth0
iface eth0 inet static
address 192.168.1.14
gateway 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
# If running Security Onion 12.04, you'll need to configure DNS here
dns-nameservers 192.168.1.1 192.168.1.2
# AND one or more of the following
# Connected to TAP or SPAN port for traffic monitoring
auto eth1
iface eth1 inet manual
up ifconfig $IFACE -arp up
up ip link set $IFACE promisc on
down ip link set $IFACE promisc off
down ifconfig $IFACE down
post-up for i in rx tx sg tso ufo gso gro lro; do ethtool -K $IFACE $i off; done
# If running Security Onion 12.04, you should also disable IPv6 as follows:
post-up echo 1 > /proc/sys/net/ipv6/conf/$IFACE/disable_ipv6