[root@localhost iptables]# cat jump-goto.sh
#!/bin/bash
# Flush all chains in filter table
iptables -F
# Delete all user-defined chains in the filter table
iptables -X
IMAGE_NAME = "generic/ubuntu1604" | |
N = 2 | |
Vagrant.configure("2") do |config| | |
config.ssh.insert_key = false | |
config.vm.provider "libvirt" do |v| | |
v.memory = 1024 | |
v.cpus = 2 | |
end |
[root@localhost iptables]# cat jump-goto.sh
#!/bin/bash
# Flush all chains in filter table
iptables -F
# Delete all user-defined chains in the filter table
iptables -X