ネットワーク設定
インターフェース確認 [root@falcon21 ~]# ifconfig enp0s25: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.2.101 netmask 255.255.255.0 broadcast 192.168.2.255 ether 78:2b:cb:95:c1:4f txqueuelen 1000 (Ethernet) RX packets 495023 bytes 163558764 (155.9 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 670248 bytes 767546867 (731.9 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 device interrupt 21 memory 0xf7ae0000-f7b00000 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 loop txqueuelen 1000 (Local Loopback) RX packets 9441 bytes 1098658 (1.0 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 9441 bytes 1098658 (1.0 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 virbr0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet 192.168.122.1 netmask 255.255.255.0 broadcast 192.168.122.255 ether 52:54:00:37:f8:d2 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ----------------------- デバイスファイル ifc-eth0 を新規作成 [root@falcon21 ~]# vi /etc/sysconfig/network-scripts/ifcfg-enp0s25 TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=none DEFROUTE=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no IPV6_ADDR_GEN_MODE=stable-privacy NAME=enp0s25 UUID=a474c99e-0d26-46a2-bf26-bd47244b1e7a DEVICE=enp0s25 ONBOOT=yes IPADDR=192.168.2.101 PREFIX=24 GATEWAY=192.168.2.1 DNS1=192.168.2.1 DOMAIN=falcon21.space ― [root@falcon21 ~]# systemctl status network ● network.service - LSB: Bring up/down networking Loaded: loaded (/etc/rc.d/init.d/network; bad; vendor preset: disabled) Active: active (exited) since 日 2019-11-03 23:46:47 JST; 28s ago Docs: man:systemd-sysv-generator(8) Process: 3338 ExecStop=/etc/rc.d/init.d/network stop (code=exited, status=0/SUCCESS) Process: 3519 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=0/SUCCESS) 11月 03 23:46:44 falcon21.space systemd[1]: Starting LSB: Bring up/down networking... 11月 03 23:46:45 falcon21.space network[3519]: ループバックインターフェイスを呼び込み中 [ OK ] 11月 03 23:46:46 falcon21.space network[3519]: インターフェース DHCP_自動 を活性化中: 接続が正常にアクティベートされました …tion/14) 11月 03 23:46:46 falcon21.space network[3519]: [ OK ] 11月 03 23:46:46 falcon21.space network[3519]: インターフェース enp0s25 を活性化中: [ OK ] 11月 03 23:46:47 falcon21.space systemd[1]: Started LSB: Bring up/down networking. Hint: Some lines were ellipsized, use -l to show in full. ----------------------- ルーティングの確認 [root@falcon21 ~]# netstat -rn Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface 0.0.0.0 192.168.2.1 0.0.0.0 UG 0 0 0 enp0s25 192.168.2.0 0.0.0.0 255.255.255.0 U 0 0 0 enp0s25 192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0 ルーティング設定 192.168.0.0/32」ネットワーク宛通信のゲートウェイを「192.168.2.101」に設定 192.168.0.1/32」ネットワーク宛通信のゲートウェイを「192.168.2.101」に設定 [root@falcon21 ~]# route add -net 192.168.0.0 netmask 255.255.255.0 gw 192.168.2.101 enp0s25 [root@falcon21 ~]# route add -net 192.168.1.0 netmask 255.255.255.0 gw 192.168.2.101 enp0s25 ルーティングの再確認 [root@falcon21 ~]# netstat -rn Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface 0.0.0.0 192.168.2.1 0.0.0.0 UG 0 0 0 enp0s25 192.168.0.0 192.168.2.101 255.255.255.0 UG 0 0 0 enp0s25 192.168.1.0 192.168.2.101 255.255.255.0 UG 0 0 0 enp0s25 192.168.2.0 0.0.0.0 255.255.255.0 U 0 0 0 enp0s25 192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0 恒久的にルーティングを追加 [root@falcon21 ~]# vi /etc/sysconfig/network-scripts/route-enp0s25 192.168.0.0/24 via 192.168.2.101 192.168.1.0/24 via 192.168.2.101 設定反映 [root@falcon21 ~]# systemctl restart network [root@falcon21 ~]# systemctl status network ● network.service - LSB: Bring up/down networking Loaded: loaded (/etc/rc.d/init.d/network; bad; vendor preset: disabled) Active: active (exited) since 月 2019-11-04 00:07:02 JST; 33s ago Docs: man:systemd-sysv-generator(8) Process: 23227 ExecStop=/etc/rc.d/init.d/network stop (code=exited, status=0/SUCCESS) Process: 23376 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=0/SUCCESS) 11月 04 00:06:59 falcon21.space systemd[1]: Stopped LSB: Bring up/down networking. 11月 04 00:06:59 falcon21.space systemd[1]: Starting LSB: Bring up/down networking... 11月 04 00:07:00 falcon21.space network[23376]: ループバックインターフェイスを呼び込み中 [ OK ] 11月 04 00:07:01 falcon21.space network[23376]: インターフェース DHCP_自動 を活性化中: 接続が正常にアクティベートされました…tion/16) 11月 04 00:07:01 falcon21.space network[23376]: [ OK ] 11月 04 00:07:01 falcon21.space network[23376]: インターフェース enp0s25 を活性化中: [ OK ] 11月 04 00:07:02 falcon21.space systemd[1]: Started LSB: Bring up/down networking. Hint: Some lines were ellipsized, use -l to show in full. postfix.削除して、再インストール設定 [root@falcon21 ~]# systemctl stop postfix [root@falcon21 ~]# systemctl stop dovecot [root@falcon21 ~]# yum erase postfix 読み込んだプラグイン:fastestmirror, langpacks, priorities, show-leaves 依存性の解決をしています 削除しました: postfix.x86_64 2:2.10.1-7.el7 依存性の削除をしました: fail2ban.noarch 0:0.9.7-1.el7 fail2ban-sendmail.noarch 0:0.9.7-1.el7 postfix-perl-scripts.x86_64 2:2.10.1-7.el7 完了しました! New leaves: fail2ban-firewalld.noarch [root@falcon21 ~]# rpm -qa | grep postfix [root@falcon21 ~]# rm -rf /usr/libexec/postfix [root@falcon21 ~]# rm -rf /etc/postfix [root@falcon21 ~]# rm -rf /usr/sbin/post* [root@falcon21 ~]# rm -f /var/log/maillog* [root@falcon21 ~]# yum -y install postfix インストール: postfix.x86_64 2:2.10.1-7.el7 完了しました! New leaves: postfix.x86_64 main.cfを別名保存 [root@falcon21 ~]# cp /etc/postfix/main.cf /etc/postfix/main.cf_org /etc/postfix/main.cfを編集 ・・・行番号を表示するには、:set nu
Gメール kazuya660@gmail.com との送受信成功 アサヒネットメール zz5h-hr@asahi-net.co.jp 送信テスト 1分後 到達 返信を受信 5分後 到達 送受信成功 hotmail hayabusa_m@hotmail.cojp 送信テスト IEブラウザ Outlook メーラーで、受信確認、迷惑メールに分類される。 返信を受信 1分後 到達 Microsoftアカウント hayabusa_m@hotmail.co.jp パスワード h1yy876 デバイス管理 z800 連絡用メール アドレス 09081311464 にコードを送信しました 確認コード 2021を ha*****@falcon21.space? に送信
Yahooメール fff_kazuya@yahoo.co.jp 8u7y6t5r4 連絡用アドレス hayato@falcon21.space 送信テスト 1分後 到達 返信を受信 5分後 到達 maillogを確認しようとしたら見つからない。 # yum -y install postfix-pflogsumm # yum --enablerepo=epel install fail2ban # yum install mod_geoip GeoIP GeoIP-devel GeoIP-data zlib-devel ----------------------- GeoIPは失効、GeoIP2をゲット [root@falcon21 GeoIP]# wget https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz [root@falcon21 GeoIP]# wget https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz [root@falcon21 GeoIP]# wget https://geolite.maxmind.com/download/geoip/database/GeoLite2-ASN.tar.gz libmaxminddbが必要 [root@falcon21 ~]# yum install libmaxminddb-devel [root@falcon21 ~]# mmdblookup --file /usr/share/GeoIP/GeoLite2-Country.mmdb --ip 8.8.8.8 Can't open /usr/share/GeoIP/GeoLite2-Country.mmdb - Error opening the specified MaxMind DB file GeoIP2 使い方? ----------------------- [root@falcon21 ~]# yum -y install sysstat [root@falcon21 ~]# systemctl start sysstat [root@falcon21 ~]# systemctl enable sysstat [root@falcon21 ~]# systemctl status sysstat ● sysstat.service - Resets System Activity Logs Loaded: loaded (/usr/lib/systemd/system/sysstat.service; enabled; vendor preset: enabled) Active: active (exited) since 金 2019-11-01 12:31:28 JST; 2 days ago Main PID: 2220 (code=exited, status=0/SUCCESS) CGroup: /system.slice/sysstat.service 11月 01 12:31:24 falcon21.space systemd[1]: Starting Resets System Activity Logs... 11月 01 12:31:28 falcon21.space systemd[1]: Started Resets System Activity Logs. [root@falcon21 ~]# cat /etc/cron.d/sysstat # Run system activity accounting tool every 10 minutes */10 * * * * root /usr/lib64/sa/sa1 1 1 # 0 * * * * root /usr/lib64/sa/sa1 600 6 & # Generate a daily summary of process accounting at 23:53 53 23 * * * root /usr/lib64/sa/sa2 -A [root@falcon21 ~]# vi /etc/sysconfig/sysstat [root@falcon21 ~]# systemctl restart sysstat |
投票数:2
平均点:10.00