This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating MD5Sum of 'vmlinux'... Passed! | |
Validating MD5Sum of 'rootfs'... Passed! | |
## Booting image at 9f0a0000 ... | |
Image Name: MIPS OpenWrt Linux-5.4.87 | |
Created: 2021-01-10 20:51:46 UTC | |
Image Type: MIPS Linux Kernel Image (lzma compressed) | |
Data Size: 3265 Bytes = 3.2 kB | |
Load Address: 80060000 | |
Entry Point: 80060000 | |
Verifying Checksum at 0x9f0a0040 ...OK |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
port 9090 | |
proto udp | |
dev tun | |
ca ca.crt | |
cert server.crt | |
key server.key | |
dh dh.pem | |
tls-auth hmac.key | |
key-direction 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
client | |
dev tun | |
proto udp | |
remote xxx.xxx.xxx.xxx xxxx | |
remote-cert-tls server | |
key-direction 1 | |
auth SHA1 | |
auth-nocache | |
auth-user-pass | |
data-ciphers AES-128-CBC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PKI_DIR=/etc/openvpn/easy-rsa/pki | |
CRT_DIR=/etc/openvpn/easy-rsa/pki/issued | |
KEY_DIR=/etc/openvpn/easy-rsa/pki/private | |
OUTPUT_DIR=/etc/openvpn/server/clients | |
BASE_CONFIG=/etc/openvpn/server/client.confbase | |
cat ${BASE_CONFIG} > ${OUTPUT_DIR}/${1}.ovpn | |
echo '<ca>' | cat >> ${OUTPUT_DIR}/${1}.ovpn | |
cat ${PKI_DIR}/ca.crt >> ${OUTPUT_DIR}/${1}.ovpn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config openvpn 'server' | |
option client '1' | |
option dev 'tun' | |
option proto 'udp' | |
list remote 'xxx.xxx.xxx.xxx xxxx' | |
option remote_cert_tls 'server' | |
option ca '/etc/openvpn/server.ca' | |
option cert '/etc/openvpn/client.cert' | |
option key '/etc/openvpn/client.key' | |
option tls_auth '/etc/openvpn/hmac.key' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CONFIG_TARGET_ath79=y | |
CONFIG_TARGET_ath79_generic=y | |
CONFIG_TARGET_MULTI_PROFILE=y | |
CONFIG_TARGET_DEVICE_ath79_generic_DEVICE_allnet_all-wap02860ac=y | |
CONFIG_TARGET_DEVICE_ath79_generic_DEVICE_engenius_ens202ext-v1=y | |
CONFIG_TARGET_DEVICE_ath79_generic_DEVICE_watchguard_ap300=y | |
CONFIG_PACKAGE_cgi-io=y | |
CONFIG_PACKAGE_libiwinfo-lua=y | |
CONFIG_PACKAGE_liblua=y | |
CONFIG_PACKAGE_liblucihttp=y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 61.120000] JFFS2 notice: (2221) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found. | |
[ 63.800000] br-lan: port 1(eth0) entered forwarding state | |
the bonjourEnable:1 | |
$Starting mDNSResponder... | |
************************************************************************ | |
* AN500 * | |
************************************************************************ | |
password: | |
Login incorrect |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## apcupsd.conf v1.1 ## | |
UPSCABLE usb | |
UPSTYPE usb | |
LOCKFILE /var/lock | |
SCRIPTDIR /etc/apcupsd | |
PWRFAILDIR /etc | |
NOLOGINDIR /etc | |
BATTERYLEVEL 0 | |
MINUTES 0 | |
TIMEOUT 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config driver 'ups' | |
option driver apcupsd-ups | |
option port localhost:3551 | |
config user | |
option username monuser | |
option password secret | |
option upsmon slave | |
config listen_address |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Booting image at bc060000 ... | |
Image Name: MIPS OpenWrt Linux-5.4.111 | |
Image Type: MIPS Linux Kernel Image (uncompressed) | |
Data Size: 2000944 Bytes = 1.9 MB | |
Load Address: 80000000 | |
Entry Point: 80000000 | |
Verifying Checksum ... OK | |
OK | |
Starting kernel ... |