iptables-restore命令用来还原iptables-save命令所备份的iptables配置。
**语法格式:** iptables-restore [参数]
**常用参数:**
| -c | 指定在还原iptables表时候,还原当前的数据包计数器和字节计数器的值 |
| ---- | ------------------------------------------------------------------ |
| -t | 指定要还原表的名称 |
**参考实例**
还原iptables配置:
```
[root@anycode ~]# iptables-restore < iptables.bak
```
指定在还原iptables表时候,还原当前的数据包计数器和字节计数器的值:
```
[root@anycode ~]# iptables-restore -c < iptables.bak
```
指定要还原表的名称:
```
[root@anycode ~]# iptables-restore -t filter.bak
```