You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I've been using this very useful tool and find it great, thanks a lot.
I was trying to setup a new bind9 zone for my VPN clients to be able to know them byt heir names (each client has an individual certificate).
Thus I modified the Python script to include a "-b or --bind" option: parser.add_argument('-b', '--bind', action='store_true', required=False, default=False, help='Run to generate bind format database')
calling a different class (OpenvpnBindPrinter) if args.bind: OpenvpnBindPrinter(cfg, monitor) else: OpenvpnHtmlPrinter(cfg, monitor)
and generates a Bind9 format to be included in a zone file
Perhaps it might be useful for others
Thanks again
The text was updated successfully, but these errors were encountered:
Hi
I've been using this very useful tool and find it great, thanks a lot.
I was trying to setup a new bind9 zone for my VPN clients to be able to know them byt heir names (each client has an individual certificate).
Thus I modified the Python script to include a "-b or --bind" option:
parser.add_argument('-b', '--bind', action='store_true',
required=False, default=False,
help='Run to generate bind format database')
calling a different class (OpenvpnBindPrinter)
if args.bind:
OpenvpnBindPrinter(cfg, monitor)
else:
OpenvpnHtmlPrinter(cfg, monitor)
and generates a Bind9 format to be included in a zone file
Perhaps it might be useful for others
Thanks again
The text was updated successfully, but these errors were encountered: