iptables-save is used to dump the contents of an IP Table in easily parseable format to STDOUT
Он его никуда не сохранил. Он его вывел.
iptables-save > /etc/firwall
Перенаправит вывод в файл /etc/firewall.
iptables-restore is used to restore IP Tables from data specified on STDIN
cat /etc/firewall | iptables-restore
Отправит на стандартный ввод iptables-restore содержимое /etc/firewall.
Почитай man по iptables-restore, iptables-save там все написано.