This file contains 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
Host 192.168.1.* | |
StrictHostKeyChecking no | |
UserKnownHostsFile /dev/null |
This file contains 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
0 19 * * 0 rtmpdump -B 14400 -v -r "rtmp://wamu-fla.streamguys.com/live" --playpath WAMU-1 -o /home/ec2-user/big_broadcast/`date +%y-%m-%d`-big-broadcast.flv |
This file contains 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
# Generated by iptables-save v1.4.14 on Sun Dec 1 13:49:10 2013 | |
*nat | |
:PREROUTING ACCEPT [329:25039] | |
:INPUT ACCEPT [194:13371] | |
:OUTPUT ACCEPT [0:0] | |
:POSTROUTING ACCEPT [0:0] | |
-A POSTROUTING -o tun0 -j MASQUERADE | |
COMMIT | |
# Completed on Sun Dec 1 13:49:10 2013 | |
# Generated by iptables-save v1.4.14 on Sun Dec 1 13:49:10 2013 |
This file contains 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
/* | |
* RoombaBumpTurn | |
* -------------- | |
* Implement the RoombaComm BumpTurn program in Arduino | |
* A simple algorithm that allows the Roomba to drive around | |
* and avoid obstacles. | |
* | |
* Arduino pin 0 (RX) is connected to Roomba TXD | |
* Arduino pin 1 (TX) is connected to Roomba RXD | |
* Arduino pin 2 is conencted to Roomba DD |
This file contains 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
/* | |
* RoombaBumpTurn | |
* -------------- | |
* Implement the RoombaComm BumpTurn program in Arduino | |
* A simple algorithm that allows the Roomba to drive around | |
* and avoid obstacles. | |
* | |
* Arduino pin 0 (RX) is connected to Roomba TXD | |
* Arduino pin 1 (TX) is connected to Roomba RXD | |
* Arduino pin 2 is conencted to Roomba DD |
This file contains 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
# Generated by iptables-save v1.4.14 on Sun Dec 1 13:49:10 2013 | |
*nat | |
:PREROUTING ACCEPT [329:25039] | |
:INPUT ACCEPT [194:13371] | |
:OUTPUT ACCEPT [0:0] | |
:POSTROUTING ACCEPT [0:0] | |
-A POSTROUTING -o eth0 -j MASQUERADE | |
COMMIT | |
# Completed on Sun Dec 1 13:49:10 2013 | |
# Generated by iptables-save v1.4.14 on Sun Dec 1 13:49:10 2013 |
This file contains 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
# Generated by iptables-save v1.4.14 on Sun Dec 1 13:49:10 2013 | |
*nat | |
:PREROUTING ACCEPT [329:25039] | |
:INPUT ACCEPT [194:13371] | |
:OUTPUT ACCEPT [0:0] | |
:POSTROUTING ACCEPT [0:0] | |
-A POSTROUTING -o tun0 -j MASQUERADE | |
COMMIT | |
# Completed on Sun Dec 1 13:49:10 2013 | |
# Generated by iptables-save v1.4.14 on Sun Dec 1 13:49:10 2013 |
This file contains 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
################################################# | |
# Sample OpenVPN 2.0 config file for # | |
# multi-client server. # | |
# # | |
# This file is for the server side # | |
# of a many-clients one-server # | |
# OpenVPN configuration. # | |
# # | |
# OpenVPN also supports # | |
# single-machine single-machine # |
This file contains 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 1194 | |
proto udp | |
dev tun | |
ca /etc/openvpn/easy-rsa/keys/ca.crt | |
cert /etc/openvpn/easy-rsa/keys/server.crt | |
key /etc/openvpn/easy-rsa/keys/server.key # This file should be kept secret | |
dh /etc/openvpn/easy-rsa/keys/dh2048.pem |
This file contains 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
openvpn --client --dev tun --proto udp --remote xxx.xxx.xxx.xxx 1194 --resolv-retry infinite --nobind --persist-key --persist-tun --ca ca.crt --cert client.crt --key client.key --comp-lzo --verb 3 --cd /home/pi/Devel/wormhole/openvpn |
OlderNewer