diff options
author | jack9603301 <jack9603301@163.com> | 2021-03-09 00:39:20 +0800 |
---|---|---|
committer | jack9603301 <jack9603301@163.com> | 2021-03-09 02:01:41 +0800 |
commit | 4c8d882e9125fb45977f74a217e9d716138d6291 (patch) | |
tree | 40fb85fb3b4cf1cc1cc812bb529e653ea6418a5b /src/migration-scripts | |
parent | 87bbe75152e3e0625776587c1fd4cd7104319fe1 (diff) | |
download | vyos-1x-4c8d882e9125fb45977f74a217e9d716138d6291.tar.gz vyos-1x-4c8d882e9125fb45977f74a217e9d716138d6291.zip |
nptv6: T2518: Support IPv6 address translation
Diffstat (limited to 'src/migration-scripts')
-rwxr-xr-x | src/migration-scripts/nat66/1-to-2 | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/migration-scripts/nat66/1-to-2 b/src/migration-scripts/nat66/1-to-2 new file mode 100755 index 000000000..9c3998ec1 --- /dev/null +++ b/src/migration-scripts/nat66/1-to-2 @@ -0,0 +1,46 @@ +#!/usr/bin/env python3 +# +# Copyright (C) 2020 VyOS maintainers and contributors +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 or later as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +from sys import argv,exit +from vyos.configtree import ConfigTree + +if (len(argv) < 1): + print("Must specify file name!") + exit(1) + +file_name = argv[1] + +with open(file_name, 'r') as f: + config_file = f.read() + +config = ConfigTree(config_file) + +base = ['nat66', 'source'] + +if not config.exists(base): + # Nothing to do + exit(0) + +for rule in config.list_nodes(base + ['rule']): + rule_base = base + ['rule', rule] + config.rename(rule_base + ['translation', 'prefix'], 'address') + +try: + with open(file_name, 'w') as f: + f.write(config.to_string()) +except OSError as e: + print("Failed to save the modified config: {}".format(e)) + exit(1) |