ssh -l tallerdns lisa.labs.lacnic.net
(password lacnicYYYXX)
# set this parameter in .bashrc or .bash_profile | |
# Source: [See gist comments] | |
#bind 'set mark-symlinked-directories on' | |
# (Hopefully) For all readline-enabled processes | |
# If ~/.inputrc doesn't exist yet: First include the original /etc/inputrc | |
# so it won't get overriden | |
# if [ ! -a ~/.inputrc ]; then echo '$include /etc/inputrc' > ~/.inputrc; fi |
# cat /etc/systemd/system/ripeval.service | |
[Unit] | |
Description=RIPE-NCC RPKI Validator | |
After=network.target | |
[Service] | |
Type=forking | |
User=ripeval | |
WorkingDirectory=/home/ripeval | |
ExecStart=/home/ripeval/ripeval_latest/rpki-validator.sh start |
# instalacion para debian stretch | |
sudo apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg2 \ | |
software-properties-common | |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - |
# GNU Screen - main configuration file | |
# All other .screenrc files will source this file to inherit settings. | |
# Author: Christian Wills - [email protected] | |
# Allow bold colors - necessary for some reason | |
attrcolor b ".I" | |
# Tell screen how to set colors. AB = background, AF=foreground | |
termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm' |
# Source: https://wiki.ubuntu.com/UncomplicatedFirewall | |
# Allowing known services by name | |
ufw allow ssh/tcp | |
ufw allow http | |
ufw allow https | |
# Allowing services by port number | |
ufw allow 8080/tcp |
import hashlib as hasher | |
import datetime as date | |
# Define what a Snakecoin block is | |
class Block: | |
def __init__(self, index, timestamp, data, previous_hash): | |
self.index = index | |
self.timestamp = timestamp | |
self.data = data | |
self.previous_hash = previous_hash |
# uncomment to use google's test objects | |
# logfile="v6v4test_google.csv" | |
# w4url="https://random8168-v6exp3.v4.metric.gstatic.com/v6exp3/6.gif" | |
# w6url="https://random2385-v6exp3.ds.metric.gstatic.com/v6exp3/6.gif" | |
# uncomment to use lacnic's objects | |
logfile="v6v4test_lacnic.csv" | |
#w4url="http://w4.labs.lacnic.net/v6v4test/1000kb.bin" | |
w4url="http://200.7.84.10/v6v4test/1000kb.bin" | |
#w6url="http://w6.labs.lacnic.net/v6v4test/1000kb.bin" |
[Unit] | |
Description=Tracd Standalone Server | |
After=network.target | |
[Service] | |
Type=simple | |
User=root | |
WorkingDirectory=/opt/trac | |
# ExecStart=/usr/local/bin/tracd -d --pidfile /tmp/tracd.pid -p 80 -s /opt/trac/xt6 | |
ExecStart=/usr/local/bin/tracd --pidfile /tmp/tracd.pid -p 80 -s /opt/trac/xt6 |
#!/bin/bash | |
################################################################### | |
# auto repository manager helper script | |
# | |
# Scans current directory for all folders ending in ".git", changes | |
# into those folders and either runs git pull or git push | |
# | |
# 2019-03-18 | |
################################################################### |