You may need to configure a proxy server if you're having trouble cloning
or fetching from a remote repository or getting an error
like unable to access '...' Couldn't resolve host '...'.
Consider something like:
| #!/bin/bash | |
| VERSION="1.0.2" | |
| # Interface connect to out lan | |
| INTERFACE="eth0" | |
| # Interface virtual for incomming traffic | |
| VIRTUAL="ifb0" | |
| # set the direction (1 = outgoing only, 2 = incoming only 3 = both) | |
| DIRECTION=3 | |
| # Speed |
| #!/bin/bash | |
| # bash generate random alphanumeric string | |
| # | |
| # bash generate random 32 character alphanumeric string (upper and lowercase) and | |
| NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| # bash generate random 32 character alphanumeric string (lowercase only) | |
| cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 |
| # -*- coding: utf-8 -*- | |
| from flask import Flask | |
| from flask import Response | |
| from flask import stream_with_context | |
| import requests | |
| app = Flask(__name__) |
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "strconv" | |
| "github.com/miekg/dns" | |
| ) |
| !Current Configuration: | |
| !System Description "PowerConnect 6248, 3.3.7.2, VxWorks 6.5" | |
| !System Software Version 3.3.7.2 | |
| !Cut-through mode is configured as disabled | |
| ! | |
| configure | |
| vlan database | |
| vlan 100,200 | |
| vlan routing 100 1 | |
| vlan routing 200 2 |
| !Current Configuration: | |
| !System Description "Powerconnect 6248, 3.2.0.7, VxWorks 6.5" | |
| !System Software Version 3.2.0.7 | |
| !Cut-through mode is configured as disabled | |
| ! | |
| configure | |
| vlan database | |
| vlan 10,20,30,40 | |
| vlan routing 10 1 | |
| vlan routing 20 2 |
| // Implementation of a UDP proxy | |
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net" | |
| "os" |