Last updated:
0 purchases
pyarchopsdnsmasq 0.0.2
pyArchOps/dnsmasq
dnsmasq
Free software: MIT license
Documentation: https://pyarchops-dnsmasq.readthedocs.io.
Features
dnsmasq
Instalation
$ pip install pyarchops-dnsmasq
Usage
impor os
import textwrap
from suitable import Api
from pyarchops import helpers
from pyarchops_dnsmasq import dnsmasq
api = Api(
'127.0.0.1:22',
connection='smart',
remote_user='root',
private_key_file=os.getenv('HOME') + '/.ssh/id_rsa',
become=True,
become_user='root',
sudo=True,
ssh_extra_args='-o StrictHostKeyChecking=no'
)
dnsmasq_conf = textwrap.dedent('''
no-poll
no-resolv
cache-size=1500
no-negcache
server=/core-vpn/10.16.254.1
server=/core-vpn/10.16.254.2
server=/core-vpn/10.16.254.3
server=8.8.4.4
server=8.8.8.8
''')
resolve_conf = 'nameserver 127.0.0.1'
config = {
'dnmasq_conf': dnsmasq_conf,
'resolv_conf': resolve_conf
}
result = dnsmasq.apply(api, config=config)
print(result)
Development
Install requirements:
$ sudo pacman -S tmux python-virtualenv python-pip libjpeg-turbo gcc make vim git tk tcl
Git clone this repository
$ git clone https://github.com/pyarchops/dnsmasq.git pyarchops.dnsmasq
$ cd pyarchops.dnsmasq
See the Makefile, to get started simply execute:
$ make up
Credits
TODO
History
0.0.1 (2018-12-11)
First release on PyPI.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.