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
abstreet_linux_v0_3_45$ RUST_BACKTRACE=full ./binaries/game | |
[2023-08-22T19:52:07Z WARN map_gui::options] Couldn't restore settings, so using defaults. data/player/settings.json | |
setup widgetry... | |
[2023-08-22T19:52:07Z WARN widgetry::runner] Monitor scale factor is 1, screen window is 800, but the application requires 1500. Overriding the scale factor to 1. | |
setup app... | |
load default texture... | |
[2023-08-22T19:52:07Z INFO widgetry::backend_glow] img_size: 896x896px (802816 px), sprite_size: 64x64px, sprites: 14x14 (196 sprites) | |
load default texture took 0.0126s | |
create blank sim... | |
create blank sim took 0.0016s |
This file has been truncated, but you can view the full file.
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
xionox@laptop:~/Documents/Projects/github/abstreet/abstreet$ ./import.sh --city=fr/brest --raw --map | |
Compiling importer v0.1.0 (/home/xionox/Documents/Projects/github/abstreet/abstreet/importer) | |
Compiling cli v0.1.0 (/home/xionox/Documents/Projects/github/abstreet/abstreet/cli) | |
Finished release [optimized] target(s) in 19.62s | |
Running `target/release/cli import --city=fr/brest --raw --map` | |
import one city... | |
import brest (fr)... | |
- Working on all brest (fr) maps | |
city (in brest (fr))... |
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
#!/usr/bin/env python3 | |
# usage: autorsi.py [-h] [--username USERNAME] [--sshconf SSHCONF] [--case CASE] | |
# hostname | |
# | |
# Generate then download RSI and logs. Optionally upload them to the matching | |
# JTAC case. | |
# | |
# positional arguments: | |
# hostname Device to connect to | |
# |
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
#!/usr/bin/env python | |
import pynetbox | |
netbox_api_token = 'secret' | |
print('Connecting to Netbox') | |
netbox = pynetbox.api('https://netbox', token=netbox_api_token) | |
# Pull list of eqsin dell devices from netbox |
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
Variable: | |
set forwarding-options sampling instance pmacct family inet output inline-jflow source-address <routerLO> | |
set forwarding-options sampling instance pmacct family inet6 output inline-jflow source-address <routerLO> | |
set protocols bgp group Netflow local-address <routerLO> | |
set protocols bgp group Netflow peer-as <routerASN> #ibgp, pmacct accepts any AS# | |
set protocols bgp group Netflow local-as <routerASN> | |
MX > 104: set chassis fpc X sampling-instance pmacct | |
MX104 : set chassis afeb slot 0 sampling-instance pmacct | |
MX80 : set chassis tfeb slot 0 sampling-instance pmacct |
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
from napalm import get_network_driver | |
from pprint import pprint | |
from peeringdb import PeeringDB | |
import twentyc | |
import smtplib | |
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
#!/usr/bin/python | |
from pandevice import base | |
from pandevice import firewall | |
from pandevice import panorama | |
from pandevice import policies | |
from pandevice import objects | |
from pandevice import network | |
from pandevice import device |