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
! | |
! Zebra configuration saved from vty | |
! 2016/10/24 00:26:34 | |
! | |
! | |
! | |
! | |
interface bond0 | |
! | |
interface eth0 |
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
var deleter = { | |
linkSelector : "a[data-delete]", | |
modalTitle : "Are you sure?", | |
modalMessage : "You will not be able to recover this entry?", | |
modalConfirmButtonText: "Yes, delete it!", | |
laravelToken : null, | |
url : "/", | |
init: function() { |
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
# Debian 7 MIPS Toolchain | |
# http://cdimage.debian.org/cdimage/archive/7.8.0/amd64/iso-cd/debian-7.8.0-amd64-CD-1.iso | |
# Basic install + SSH Server + Standard system utilities | |
# Update | |
mkdir /usr/src/mips-toolchain && cd /usr/src/mips-toolchain | |
apt-get update | |
apt-get upgrade | |
# Binutils |
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
Howto compile a mips toolchain on a fresh Debian Wheezy x64 | |
-- |
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
#!/bin/bash | |
for i in {1..500} | |
do | |
cp /etc/ppp/peers/dsl-providers /etc/ppp/peers/d$i | |
echo "Conectando ppp$i ..." | |
pon d$i | |
sleep 1 | |
done |
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
ACCEL-PPP.CONF(5) ACCEL-PPP.CONF(5) | |
NAME | |
accel-ppp.conf - ACCEL-PPP VPN daemon configuration | |
DESCRIPTION | |
accel-pppd(8) reads options from this file, usually /etc/accel-ppp.conf |
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
- Use the serial console to access u-boot and run the following commands | |
- To boot once: | |
setenv boot_freebsd 'fatload usb 0 $loadaddr kernel/kernel ; bootoctlinux $loadaddr coremask=0x3' | |
setenv bootdelay 5 | |
saveenv | |
run boot_freebsd | |
- Make boot to FreeBSD default: |