summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniil Baturin <daniil.baturin@vyatta.com>2011-12-09 02:54:49 +0700
committerDaniil Baturin <daniil.baturin@vyatta.com>2011-12-09 02:54:49 +0700
commit31074e3faf81cd02c4675ef517bde209745b1723 (patch)
treee033537528d850d309a963ec6c2830413c68e849 /lib
parentbac19ac54a73a4a08d8d082e1a8755e6f068b83b (diff)
downloadvyatta-nat-31074e3faf81cd02c4675ef517bde209745b1723.tar.gz
vyatta-nat-31074e3faf81cd02c4675ef517bde209745b1723.zip
Update error messages to match "outside/inside-address"->"translation
address" change.
Diffstat (limited to 'lib')
-rw-r--r--lib/Vyatta/DstNatRule.pm16
-rw-r--r--lib/Vyatta/SrcNatRule.pm22
2 files changed, 19 insertions, 19 deletions
diff --git a/lib/Vyatta/DstNatRule.pm b/lib/Vyatta/DstNatRule.pm
index 764eed5..e95cc7b 100644
--- a/lib/Vyatta/DstNatRule.pm
+++ b/lib/Vyatta/DstNatRule.pm
@@ -208,7 +208,7 @@ sub rule_str {
. "\"udp\" or \"tcp_udp\" (currently \"$self->{_proto}\")", undef);
}
if ($use_netmap) {
- return ("Cannot use ports with an IPv4net type outside-address as it "
+ return ("Cannot use ports with an IPv4net type translation address as it "
. "statically maps a whole network of addresses onto another "
. "network of addresses", undef);
}
@@ -237,7 +237,7 @@ sub rule_str {
$to_dst .= ":$port";
}
if ($self->{_exclude}) {
- # inside-address has no effect for "exclude" rules
+ # translation address has no effect for "exclude" rules
} elsif ($to_dst ne "") {
if ($use_netmap) {
# replace "DNAT" with "NETMAP"
@@ -247,7 +247,7 @@ sub rule_str {
$jump_param .= " $to_dst";
}
} else {
- return ("inside-address not specified", undef);
+ return ("translation address not specified", undef);
}
# source rule string
@@ -261,8 +261,8 @@ sub rule_str {
if ($use_netmap) {
if (!defined $dst->{_network}){
- return ("\ndestination address needs to be defined as a subnet with the same network prefix as inside-address" .
- "\nwhen inside-address is defined with a prefix for static network mapping "
+ return ("\ndestination address needs to be defined as a subnet with the same network prefix as translation address" .
+ "\nwhen translation address is defined with a prefix for static network mapping "
, undef);
}
@@ -271,13 +271,13 @@ sub rule_str {
$inside_addr_mask =~ s/.+\///;
$dst_addr_mask =~ s/.+\///;
if (!($inside_addr_mask == $dst_addr_mask)) {
- return ("\ndestination address should be a subnet with the same network prefix as inside-address" .
- "\nwhen inside-address is defined with a prefix for static network mapping"
+ return ("\ndestination address should be a subnet with the same network prefix as translation address" .
+ "\nwhen translation address is defined with a prefix for static network mapping"
, undef);
}
if ($dst->{_network} =~ /\!/) {
- return ("\ncannot define a negated destination address when inside-address" .
+ return ("\ncannot define a negated destination address when translation address" .
"\nis defined with a prefix for static network mapping "
, undef);
}
diff --git a/lib/Vyatta/SrcNatRule.pm b/lib/Vyatta/SrcNatRule.pm
index 49ec119..6e759d2 100644
--- a/lib/Vyatta/SrcNatRule.pm
+++ b/lib/Vyatta/SrcNatRule.pm
@@ -114,7 +114,7 @@ sub setupOrig {
$self->{_log} = $config->returnOrigValue("log");
$self->{_outside_addr}->{_addr}
- = $config->returnOrigValue("outside-address address");
+ = $config->returnOrigValue("translation address");
if (defined($self->{_outside_addr}->{_addr}) && ($self->{_outside_addr}->{_addr} eq "masquerade")) {
$self->{_is_masq} = 1;
}
@@ -127,7 +127,7 @@ sub setupOrig {
$self->{_outside_addr}->{_addr} = undef;
}
$self->{_outside_addr}->{_port}
- = $config->returnOrigValue("outside-address port");
+ = $config->returnOrigValue("translation port");
$src->setupOrig("$level source");
$dst->setupOrig("$level destination");
@@ -188,13 +188,13 @@ sub rule_str {
my $to_src = '';
if (defined($self->{_outside_addr}->{_addr})) {
- # Check outside-address
+ # Check translation address
my $addr = $self->{_outside_addr}->{_addr};
if (defined($self->{_is_masq})) {
# It's masquerade rule, outside address will not be used anyway
1;
} elsif ($addr =~ m/\//) {
- # Outside address is a probably x.x.x.x/y subnet thus it's a *-to-many rule
+ # Translation address is a probably x.x.x.x/y subnet thus it's a *-to-many rule
# Target will be NETMAP
return ("\"$addr\" is not a valid IPv4net address", undef)
if (!Vyatta::TypeChecker::validateType('ipv4net', $addr, 1));
@@ -225,7 +225,7 @@ sub rule_str {
. "\"udp\" or \"tcp_udp\" (currently \"$self->{_proto}\")", undef);
}
if ($use_netmap) {
- return ("Cannot use ports with an IPv4net type outside-address as it " .
+ return ("Cannot use ports with an IPv4net type translation address as it " .
"statically maps a whole network of addresses onto another " .
"network of addresses", undef);
}
@@ -260,7 +260,7 @@ sub rule_str {
}
if ($self->{_exclude}) {
- # outside-address has no effect for "exclude" rules
+ # translation address has no effect for "exclude" rules
} elsif ($to_src ne '') {
if (defined($self->{_is_masq})) {
$jump_param .= " --to-ports $to_src";
@@ -298,8 +298,8 @@ sub rule_str {
if ($use_netmap) {
if (!defined $src->{_network}){
- return ("\nsource address needs to be defined as a subnet with the same network prefix as outside-address" .
- "\nwhen outside-address is defined with a prefix for static network mapping "
+ return ("\nsource address needs to be defined as a subnet with the same network prefix as translation address" .
+ "\nwhen translation address is defined with a prefix for static network mapping "
, undef);
}
@@ -309,13 +309,13 @@ sub rule_str {
$src_addr_mask =~ s/.+\///;
if (!($outside_addr_mask == $src_addr_mask)) {
- return ("\nsource address should be a subnet with the same network prefix as outside-address" .
- "\nwhen outside-address is defined with a prefix for static network mapping "
+ return ("\nsource address should be a subnet with the same network prefix as translation address" .
+ "\nwhen translation address is defined with a prefix for static network mapping "
, undef);
}
if ($src->{_network} =~ /\!/) {
- return ("\ncannot define a negated source address when outside-address" .
+ return ("\ncannot define a negated source address when translation address" .
"\nis defined with a prefix for static network mapping "
, undef);