Lines Matching full:jump
70 * E.g. "-I bw_INPUT -i rmnet0 --jump costly"
78 * iptables -I bw_INPUT -i iface0 --jump costly_shared
79 * iptables -I bw_OUTPUT -o iface0 --jump costly_shared
81 * --jump REJECT --reject-with icmp-net-prohibited
82 * iptables -A costly_shared --jump penalty_box
85 * iptables -I bw_INPUT -i iface1 --jump costly_shared
86 * iptables -I bw_OUTPUT -o iface1 --jump costly_shared
91 * iptables -I bw_INPUT -i iface0 --jump costly_iface0
92 * iptables -I bw_OUTPUT -o iface0 --jump costly_iface0
94 * --jump REJECT --reject-with icmp-net-prohibited
95 * iptables -A costly_iface0 --jump penalty_box
101 * --jump REJECT --reject-with icmp-net-prohibited
131 "-A bw_INPUT -i lo --jump RETURN",
134 "-A bw_OUTPUT -o lo --jump RETURN",
137 "-A costly_shared --jump penalty_box",
179 fullCmd += " --jump REJECT --reject-with";
404 // The requried IP version specific --jump REJECT ... will be added later.
452 snprintf(cmd, sizeof(cmd), "-D bw_INPUT -i %s --jump %s", ifn, costCString);
455 snprintf(cmd, sizeof(cmd), "-I bw_INPUT %d -i %s --jump %s", ruleInsertPos, ifn, costCString);
458 snprintf(cmd, sizeof(cmd), "-D bw_OUTPUT -o %s --jump %s", ifn, costCString);
461 snprintf(cmd, sizeof(cmd), "-I bw_OUTPUT %d -o %s --jump %s", ruleInsertPos, ifn, costCString);
486 snprintf(cmd, sizeof(cmd), "-D bw_INPUT -i %s --jump %s", ifn, costCString);
488 snprintf(cmd, sizeof(cmd), "-D bw_OUTPUT -o %s --jump %s", ifn, costCString);