There are two parts to networking within QEMU:
- The virtual network device that is provided to the guest (e.g. a PCI network card).
- The network backend that interacts with the emulated NIC (e.g. puts packets onto the host's network).
| <rdf:RDF | |
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" | |
| xmlns:foaf="http://xmlns.com/foaf/0.1/" | |
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| xmlns:rrdf="http://rdfs.org/resume-rdf/" | |
| xmlns:cc="http://creativecommons.org/ns#" | |
| xmlns:admin="http://webns.net/mvcb/"> | |
| <foaf:PersonalProfileDocument rdf:about="http://kaili.us/foaf.xml"> |
| #!flask/bin/python | |
| from flask import Flask, jsonify, abort, request, make_response, url_for | |
| from flask.ext.httpauth import HTTPBasicAuth | |
| app = Flask(__name__, static_url_path = "") | |
| auth = HTTPBasicAuth() | |
| @auth.get_password | |
| def get_password(username): | |
| if username == 'miguel': |
| import re | |
| import ast | |
| from chameleon.tales import TalesExpr | |
| from chameleon.codegen import template | |
| from chameleon.astutil import load | |
| from chameleon.astutil import Symbol | |
| from chameleon.exc import ExpressionError |
| #!/bin/bash | |
| #### This script is published by Philipp Klaus <[email protected]> | |
| #### on <http://blog.philippklaus.de/2011/05/ipv6-6in4-tunnel-via-hurricane-electric-tunnelbroker-net-automatic-ip-update-on-mac-os-x/> | |
| #### It is originally by freese60 and modified by limemonkey. | |
| #### Found on <http://www.tunnelbroker.net/forums/index.php?topic=287.0> | |
| ### Uncomment this line to debug the script: | |
| #set -x |