部署 RSA Ipsec
安装 Libreswan
1 | yum install -y libreswan |
重新初始化数据库
1 | rm -rf /etc/ipsec.d/*.db # 删除初始数据库 |
检查 Ipsec 状态
- 命令
1 | ipsec verify |
- 返回
1 | Verifying installed system and configuration files |
- 解决方法
1 | # ICMP default/send_redirects [NOT DISABLED] |
生成 RSA 密钥
- 双方个生成一个 RSA 密钥
1 | ipsec newhostkey --configdir /etc/ipsec.d \ |
- 查看密钥 获得RSAID
1 | ipsec showhostkey --list |
选定 left,right 主机
执行 获取 RSAID
1
ipsec showhostkey --list
结果
1
< 1> RSA keyid: AwEAAbUXf ckaid: 4f7a48ca8003f3adf0b6730f4130bbe00748faea
- left 操作
1
ipsec showhostkey --left --rsaid AwEAAbUXf
- right 操作
1
ipsec showhostkey --right --rsaid AwEAAbUXf
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Chronos's Blog!
评论