-
Notifications
You must be signed in to change notification settings - Fork 2
/
example-audit
64 lines (51 loc) · 1.01 KB
/
example-audit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- mode: sh; -*-
host='[email protected]'
# port='22'
# intra_host='[email protected]'
# intra_port='22'
##### pubkey #####
config_pubkey_enabled=1
##### bin #####
config_bin_enabled=1
##### network #####
config_network_enabled=1
config_network="
package network
config interface 'lan'
option ipaddr '192.168.2.12'
config interface 'wan'
option ifname 'wlan0'
"
config_wireless="
package wireless # network
config wifi-iface 'iface0'
option mode 'sta'
option network 'wan'
option ssid ''
option encryption 'psk2'
option key ''
option macaddr ''
"
##### common #####
config_common_enabled=1
config_system="
package system
config system 'system'
option hostname 'audit'
"
config_root_password=''
##### firewall #####
config_firewall_enabled=1
config_firewall="
# package firewall
# for dsniff
# config zone 'zone_wan'
# option forward 'ACCEPT'
# for ettercap
# config zone 'zone_wan'
# option forward 'REJECT'
# option masq '0'
# option mtu_fix '0'
"
##### audit ######
config_audit_enabled=1