示例#1
0
Copyright (c) 2009-2015 Exa Networks. All rights reserved.
"""

import unittest

from exabgp.protocol.family import AFI
from exabgp.protocol.family import SAFI
from exabgp.bgp.message import Message
# from exabgp.bgp.message import Notify
from exabgp.bgp.message import Open
from exabgp.bgp.message.open.routerid import RouterID
from exabgp.bgp.message.open.capability import Capabilities
from exabgp.bgp.message.open.capability import RouteRefresh

from exabgp.configuration.environment import environment
environment.setup('')


class TestData(unittest.TestCase):
    def test_1_open(self):
        check_capa = {
            1: [(AFI.ipv4, SAFI.unicast), (AFI.ipv6, SAFI.unicast)],
            2: RouteRefresh(),
            65: 65534L,
            128: RouteRefresh(),
        }

        message_id = 1
        body = ''.join([
            chr(c) for c in [
                0x4, 0xff, 0xfe, 0x0, 0xb4, 0x0, 0x0, 0x0, 0x0, 0x20, 0x2, 0x6,
示例#2
0
from exabgp.protocol.family import AFI
from exabgp.protocol.family import SAFI
from exabgp.bgp.message import Message
from exabgp.bgp.message import Open
from exabgp.bgp.message.open import Version
from exabgp.bgp.message.open import ASN
from exabgp.bgp.message.open import RouterID
from exabgp.bgp.message.open import HoldTime
from exabgp.bgp.message.open.routerid import RouterID
from exabgp.bgp.message.open.capability import Capabilities
from exabgp.bgp.message.open.capability import RouteRefresh

from exabgp.util.test import data_from_body

from exabgp.configuration.environment import environment
environment.setup('')


open_body = [0x4, 0xff, 0xfe, 0x0, 0xb4, 0x0, 0x0, 0x0, 0x0, 0x20, 0x2, 0x6, 0x1, 0x4, 0x0, 0x1, 0x0, 0x1, 0x2, 0x6, 0x1, 0x4, 0x0, 0x2, 0x0, 0x1, 0x2, 0x2, 0x80, 0x0, 0x2, 0x2, 0x2, 0x0, 0x2, 0x6, 0x41, 0x4, 0x0, 0x0, 0xff, 0xfe]

class TestData (unittest.TestCase):

	def test_1_open (self):
		check_capa = {
			1: [(AFI.ipv4, SAFI.unicast), (AFI.ipv6, SAFI.unicast)],
			2: RouteRefresh(),
			65: 65534,
			128: RouteRefresh(),
		}

		message_id = 1
示例#3
0
#!/usr/bin/env python
# encoding: utf-8
"""
table.py

Created by Thomas Mangin on 2009-08-25.
Copyright (c) 2009-2015 Exa Networks. All rights reserved.
"""

import os
import glob
import unittest

from exabgp.configuration.environment import environment
env = environment.setup('')

from exabgp.configuration.loader import read
#from exabgp.configuration.loader import InvalidFormat

class TestLoader (unittest.TestCase):

	def setUp(self):
		self.folder = os.path.abspath(os.path.join(os.path.abspath(__file__),'..','..','configuration'))

	def test_loader (self):
		for exaname in glob.glob('%s/*.exa' % self.folder):
			jsonname = '%s.json' % exaname[:-4]
			exa = read(exaname)
			jsn = read(jsonname)
			if not exa or not jsn:
				self.fail('parsing of %s or %s did not return a valid dictionary' % (exaname,jsonname))
示例#4
0
文件: bgp.py 项目: JeevaMunusamy/sdx
def main ():
	
	main = int(sys.version[0])
	secondary = int(sys.version[2])

	if main != 2 or secondary < 5:
		sys.exit('This program can not work (is not tested) with your python version (< 2.5 or >= 3.0)')

	parser = argparse.ArgumentParser(
		prog='exabgp',
		description='The BGP swiss army knife of networking',
		add_help=False,
		epilog="""
ExaBGP will automatically look for its configuration file (in windows ini format)
 - in the etc/exabgp folder located within the extracted tar.gz
 - in /etc/exabgp/exabgp.env

Individual configuration options can be set using environment variables, such as :
   > env exabgp.daemon.daemonize=true ./sbin/exabgp
or > env exabgp.daemon.daemonize=true ./sbin/exabgp
or > export exabgp.daemon.daemonize=true; ./sbin/exabgp

Multiple environment values can be set
and the order of preference is :
 - 1 : command line environment value using dot separated notation
 - 2 : exported value from the shell using dot separated notation
 - 3 : command line environment value using underscore separated notation
 - 4 : exported value from the shell using underscore separated notation
 - 5 : the value in the ini configuration file
 - 6 : the built-in defaults

For example :
> env exabgp.profile.enable=true \\
      exabgp.profile.file=~/profile.log  \\
      exabgp.log.packets=true \\
      exabgp.log.destination=host:127.0.0.1 \\
      exabgp.daemon.user=wheel \\
      exabgp.daemon.daemonize=true \\
      exabgp.daemon.pid=/var/run/exabpg.pid \\
   ./bin/exabgp ./etc/bgp/configuration.txt

The program configuration can be controlled using signals:
 - SIGLARM : restart ExaBGP
 - SIGUSR1 : reload the configuration
 - SIGUSR2 : reload the configuration and the forked processes
 - SIGTERM : terminate ExaBGP
 - SIGHUP  : terminate ExaBGP (does NOT reload the configuration anymore)
""",
		formatter_class=argparse.RawTextHelpFormatter
	)

	g = parser.add_mutually_exclusive_group()
	g.add_argument(
		"--help", "-h",
		action="store_true", default=False,
		help="exabgp manual page"
	)

	parser.add_argument(
		'configuration',
		nargs='*',
		help='peer and route configuration file'
	)

	parser.add_argument(
		"--version", "-v",
		action="store_true", default=False,
		help="shows ExaBGP version"
	)
	parser.add_argument(
		"--folder", "-f",
		help="configuration folder"
	)
	parser.add_argument(
		"--env", "-e",
		default='exabgp.env',
		help="environment configuration file"
	)

	g = parser.add_mutually_exclusive_group()
	g.add_argument(
		"--diff-env", "-de",
		action="store_true", default=False,
		help="display non-default configurations values using the env format"
	)
	g.add_argument(
		"--full-env", "-fe",
		action="store_true", default=False,
		help="display the configuration using the env format"
	)
	g.add_argument(
		"--full-ini", "-fi",
		action="store_true", default=False,
		help="display the configuration using the ini format"
	)
	g.add_argument(
		"--diff-ini", "-di",
		action="store_true", default=False,
		help="display non-default configurations values using the ini format"
	)

	g = parser.add_argument_group("debugging")
	g.add_argument(
		"--debug", "-d",
		action="store_true", default=False,
		help="start the python debugger on serious logging and on SIGTERM\n"
		"shortcut for exabgp.log.all=true exabgp.log.level=DEBUG"
	)
	g.add_argument(
		"--once", "-1",
		action="store_true", default=False,
		help="only perform one attempt to connect to peers (used for debugging)"
	)
	g.add_argument(
		"--pdb", "-p",
		action="store_true", default=False,
		help="fire the debugger on critical logging, SIGTERM, and exceptions\n"
		"shortcut for exabgp.pdb.enable=true\n"
	)
	g.add_argument(
		"--memory", '-s',  # can not be -m it conflict with python -m for modules
		action="store_true", default=False,
		help="display memory usage information on exit"
	)
	g.add_argument(
		"--profile",
		metavar="PROFILE",
		help="enable profiling\n"
		"shortcut for exabgp.profile.enable=true exabgp.profle=file=<file>"
	)
	g.add_argument(
		"--test", "-t",
		action="store_true", default=False,
		help="perform a configuration validity check only"
	)
	g.add_argument(
		"--decode", "-x",  # can not be -d it conflicts with --debug
		metavar="HEX_MESSAGE",
		nargs='+',
		help="decode a raw route packet in hexadecimal string"
	)

	options = parser.parse_args()

	if options.version:
		sys.stdout.write(version)
		sys.exit(0)

	if options.decode:
		decode = ''.join(options.decode).replace(':','')
		if not is_hex(decode):
			parser.print_help()
			print "\n\n" \
					"The BGP message must be an hexadecimal string." \
					"all colon or spaces are ignored, here is one example ie:\n" \
					" --decode 001E0200000007900F0003000101\n" \
					" --decode 001E:02:0000:0007:900F:0003:0001:01\n" \
					" --deocde FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001E0200000007900F0003000101\n" \
					" --decode FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF:001E:02:0000:0007:900F:0003:0001:01\n" \
					" --decode 'FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 001E02 00000007900F0003000101'\n"
			sys.exit(1)
	else:
		decode = ''

	if options.folder:
		etc = os.path.realpath(os.path.normpath(options.folder))
	else:
		etc = os.path.realpath(os.path.normpath(os.environ.get('ETC','etc')))
	os.environ['ETC'] = etc

	if not options.env.startswith('/'):
		envfile = '%s/%s' % (etc,options.env)
	else:
		envfile = options.env

	from exabgp.configuration.environment import environment

	environment.application = 'exabgp'
	environment.configuration = {
		'profile' : {
			'enable'        : (environment.boolean,environment.lower,'false',    'toggle profiling of the code'),
			'file'          : (environment.unquote,environment.quote,'',         'profiling result file, none means stdout, no overwriting'),
		},
		'pdb' : {
			'enable'        : (environment.boolean,environment.lower,'false',    'on program fault, start pdb the python interactive debugger'),
		},
		'daemon' : {
	#		'identifier'    : (environment.unquote,environment.nop,'ExaBGP',     'a name for the log (to diferenciate multiple instances more easily)'),
			'pid'           : (environment.unquote,environment.quote,'',         'where to save the pid if we manage it'),
			'user'          : (environment.user,environment.quote,'nobody',      'user to run as'),
			'daemonize'     : (environment.boolean,environment.lower,'false',    'should we run in the background'),
		},
		'log' : {
			'enable'        : (environment.boolean,environment.lower,'true',     'enable logging'),
			'level'         : (environment.syslog_value,environment.syslog_name,'INFO', 'log message with at least the priority SYSLOG.<level>'),
			'destination'   : (environment.unquote,environment.quote,'stdout', 'where logging should log\n' \
			                  '                                  syslog (or no setting) sends the data to the local syslog syslog\n' \
			                  '                                  host:<location> sends the data to a remote syslog server\n' \
			                  '                                  stdout sends the data to stdout\n' \
			                  '                                  stderr sends the data to stderr\n' \
			                  '                                  <filename> send the data to a file' \
			),
			'all'           : (environment.boolean,environment.lower,'false',    'report debug information for everything'),
			'configuration' : (environment.boolean,environment.lower,'true',     'report command parsing'),
			'reactor'       : (environment.boolean,environment.lower,'true',     'report signal received, command reload'),
			'daemon'        : (environment.boolean,environment.lower,'true',     'report pid change, forking, ...'),
			'processes'     : (environment.boolean,environment.lower,'true',     'report handling of forked processes'),
			'network'       : (environment.boolean,environment.lower,'true',     'report networking information (TCP/IP, network state,...)'),
			'packets'       : (environment.boolean,environment.lower,'false',    'report BGP packets sent and received'),
			'rib'           : (environment.boolean,environment.lower,'false',    'report change in locally configured routes'),
			'message'       : (environment.boolean,environment.lower,'false',    'report changes in route announcement on config reload'),
			'timers'        : (environment.boolean,environment.lower,'false',    'report keepalives timers'),
			'routes'        : (environment.boolean,environment.lower,'false',    'report received routes'),
			'parser'        : (environment.boolean,environment.lower,'false',    'report BGP message parsing details'),
			'short'         : (environment.boolean,environment.lower,'false',    'use short log format (not prepended with time,level,pid and source)'),
		},
		'tcp' : {
			'timeout' : (environment.integer,environment.nop,'1',   'time we will wait on select (can help with unstable BGP multihop)\n'
			                                                        '%sVERY dangerous use only if you understand BGP very well.' % (' '* 34)),
			'once': (environment.boolean,environment.lower,'false', 'only one tcp connection attempt per peer (for debuging scripts)'),
			'delay': (environment.integer,environment.nop,'0',      'start to announce route when the minutes in the hours is a modulo of this number'),
			'bind': (environment.optional_ip,environment.quote,'', 'IP to bind on when listening (no ip to disable)'),
			'port': (environment.integer,environment.nop,'179', 'port to bind on when listening'),
			'acl': (environment.boolean,environment.lower,'', '(experimental) unimplemented'),
		},
		'bgp' : {
			'openwait': (environment.integer,environment.nop,'60','how many second we wait for an open once the TCP session is established'),
		},
		'cache' : {
			'attributes'  :  (environment.boolean,environment.lower,'true', 'cache routes attributes (configuration and wire) for faster parsing'),
			'nexthops'    :  (environment.boolean,environment.lower,'true', 'cache routes next-hops'),
		},
		'api' : {
			'encoder'  :  (environment.api,environment.lower,'text', '(experimental) encoder to use with with external API (text or json)'),
		},
		'reactor' : {
			'speed' : (environment.real,environment.nop,'1.0', 'time of one reactor loop\n'
			                                                   '%suse only if you understand the code.' % (' '* 34)),
		},
		# Here for internal use
		'internal' : {
			'name'    : (environment.nop,environment.nop,'ExaBGP', 'name'),
			'version' : (environment.nop,environment.nop,version,  'version'),
		},
		# Here for internal use
		'debug' : {
			'pdb' : (environment.boolean,environment.lower,'false','enable python debugger on errors'),
			'memory' : (environment.boolean,environment.lower,'false','command line option --memory'),
			'configuration' : (environment.boolean,environment.lower,'false','undocumented option: raise when parsing configuration errors'),
			'selfcheck' : (environment.boolean,environment.lower,'false','does a self check on the configuration file'),
			'route' : (environment.unquote,environment.quote,'','decode the route using the configuration'),
			'defensive' : (environment.boolean,environment.lower,'false', 'generate random fault in the code in purpose'),
		},
	}

	try:
		env = environment.setup(envfile)
	except environment.Error,e:
		parser.print_help()
		print '\nconfiguration issue,', str(e)
		sys.exit(1)
示例#5
0
#!/usr/bin/env python

from exabgp.configuration.environment import environment
env = environment.setup('')

header = [
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,
    0xff,  # marker
    0x1,
    0x37,  # len 311 (body is 296 - 296 + 19 = 315 !!)
    0x2,  # type Update
]

body = [
    0x0,
    0x0,  #len withdrawn routes
    # No routes to remove
示例#6
0
文件: open_test.py 项目: qz267/exabgp
from exabgp.protocol.family import AFI
from exabgp.protocol.family import SAFI
from exabgp.bgp.message import Message
from exabgp.bgp.message import Open
from exabgp.bgp.message.open import Version
from exabgp.bgp.message.open import ASN
from exabgp.bgp.message.open import RouterID
from exabgp.bgp.message.open import HoldTime
from exabgp.bgp.message.open.routerid import RouterID
from exabgp.bgp.message.open.capability import Capabilities
from exabgp.bgp.message.open.capability import RouteRefresh

from exabgp.configuration.environment import environment

environment.setup("")


class TestData(unittest.TestCase):
    def test_1_open(self):
        check_capa = {
            1: [(AFI.ipv4, SAFI.unicast), (AFI.ipv6, SAFI.unicast)],
            2: RouteRefresh(),
            65: 65534L,
            128: RouteRefresh(),
        }

        message_id = 1
        body = "".join(
            [
                chr(c)
示例#7
0
def main():

    main = int(sys.version[0])
    secondary = int(sys.version[2])

    if main != 2 or secondary < 5:
        sys.exit(
            'This program can not work (is not tested) with your python version (< 2.5 or >= 3.0)'
        )

    parser = argparse.ArgumentParser(
        prog='exabgp',
        description='The BGP swiss army knife of networking',
        add_help=False,
        epilog="""
ExaBGP will automatically look for its configuration file (in windows ini format)
 - in the etc/exabgp folder located within the extracted tar.gz
 - in /etc/exabgp/exabgp.env

Individual configuration options can be set using environment variables, such as :
   > env exabgp.daemon.daemonize=true ./sbin/exabgp
or > env exabgp.daemon.daemonize=true ./sbin/exabgp
or > export exabgp.daemon.daemonize=true; ./sbin/exabgp

Multiple environment values can be set
and the order of preference is :
 - 1 : command line environment value using dot separated notation
 - 2 : exported value from the shell using dot separated notation
 - 3 : command line environment value using underscore separated notation
 - 4 : exported value from the shell using underscore separated notation
 - 5 : the value in the ini configuration file
 - 6 : the built-in defaults

For example :
> env exabgp.profile.enable=true \\
      exabgp.profile.file=~/profile.log  \\
      exabgp.log.packets=true \\
      exabgp.log.destination=host:127.0.0.1 \\
      exabgp.daemon.user=wheel \\
      exabgp.daemon.daemonize=true \\
      exabgp.daemon.pid=/var/run/exabpg.pid \\
   ./bin/exabgp ./etc/bgp/configuration.txt

The program configuration can be controlled using signals:
 - SIGLARM : restart ExaBGP
 - SIGUSR1 : reload the configuration
 - SIGUSR2 : reload the configuration and the forked processes
 - SIGTERM : terminate ExaBGP
 - SIGHUP  : terminate ExaBGP (does NOT reload the configuration anymore)
""",
        formatter_class=argparse.RawTextHelpFormatter)

    g = parser.add_mutually_exclusive_group()
    g.add_argument("--help",
                   "-h",
                   action="store_true",
                   default=False,
                   help="exabgp manual page")

    parser.add_argument('configuration',
                        nargs='*',
                        help='peer and route configuration file')

    parser.add_argument("--version",
                        "-v",
                        action="store_true",
                        default=False,
                        help="shows ExaBGP version")
    parser.add_argument("--folder", "-f", help="configuration folder")
    parser.add_argument("--env",
                        "-e",
                        default='exabgp.env',
                        help="environment configuration file")

    g = parser.add_mutually_exclusive_group()
    g.add_argument(
        "--diff-env",
        "-de",
        action="store_true",
        default=False,
        help="display non-default configurations values using the env format")
    g.add_argument("--full-env",
                   "-fe",
                   action="store_true",
                   default=False,
                   help="display the configuration using the env format")
    g.add_argument("--full-ini",
                   "-fi",
                   action="store_true",
                   default=False,
                   help="display the configuration using the ini format")
    g.add_argument(
        "--diff-ini",
        "-di",
        action="store_true",
        default=False,
        help="display non-default configurations values using the ini format")

    g = parser.add_argument_group("debugging")
    g.add_argument(
        "--debug",
        "-d",
        action="store_true",
        default=False,
        help="start the python debugger on serious logging and on SIGTERM\n"
        "shortcut for exabgp.log.all=true exabgp.log.level=DEBUG")
    g.add_argument(
        "--once",
        "-1",
        action="store_true",
        default=False,
        help="only perform one attempt to connect to peers (used for debugging)"
    )
    g.add_argument(
        "--pdb",
        "-p",
        action="store_true",
        default=False,
        help="fire the debugger on critical logging, SIGTERM, and exceptions\n"
        "shortcut for exabgp.pdb.enable=true\n")
    g.add_argument(
        "--memory",
        '-s',  # can not be -m it conflict with python -m for modules
        action="store_true",
        default=False,
        help="display memory usage information on exit")
    g.add_argument(
        "--profile",
        metavar="PROFILE",
        help="enable profiling\n"
        "shortcut for exabgp.profile.enable=true exabgp.profle=file=<file>")
    g.add_argument("--test",
                   "-t",
                   action="store_true",
                   default=False,
                   help="perform a configuration validity check only")
    g.add_argument(
        "--decode",
        "-x",  # can not be -d it conflicts with --debug
        metavar="HEX_MESSAGE",
        nargs='+',
        help="decode a raw route packet in hexadecimal string")

    options = parser.parse_args()

    if options.version:
        sys.stdout.write(version)
        sys.exit(0)

    if options.decode:
        decode = ''.join(options.decode).replace(':', '')
        if not is_hex(decode):
            parser.print_help()
            print "\n\n" \
              "The BGP message must be an hexadecimal string." \
              "all colon or spaces are ignored, here is one example ie:\n" \
              " --decode 001E0200000007900F0003000101\n" \
              " --decode 001E:02:0000:0007:900F:0003:0001:01\n" \
              " --deocde FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001E0200000007900F0003000101\n" \
              " --decode FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF:001E:02:0000:0007:900F:0003:0001:01\n" \
              " --decode 'FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 001E02 00000007900F0003000101'\n"
            sys.exit(1)
    else:
        decode = ''

    if options.folder:
        etc = os.path.realpath(os.path.normpath(options.folder))
    else:
        etc = os.path.realpath(os.path.normpath(os.environ.get('ETC', 'etc')))
    os.environ['ETC'] = etc

    if not options.env.startswith('/'):
        envfile = '%s/%s' % (etc, options.env)
    else:
        envfile = options.env

    from exabgp.configuration.environment import environment

    environment.application = 'exabgp'
    environment.configuration = {
     'profile' : {
      'enable'        : (environment.boolean,environment.lower,'false',    'toggle profiling of the code'),
      'file'          : (environment.unquote,environment.quote,'',         'profiling result file, none means stdout, no overwriting'),
     },
     'pdb' : {
      'enable'        : (environment.boolean,environment.lower,'false',    'on program fault, start pdb the python interactive debugger'),
     },
     'daemon' : {
    #		'identifier'    : (environment.unquote,environment.nop,'ExaBGP',     'a name for the log (to diferenciate multiple instances more easily)'),
      'pid'           : (environment.unquote,environment.quote,'',         'where to save the pid if we manage it'),
      'user'          : (environment.user,environment.quote,'nobody',      'user to run as'),
      'daemonize'     : (environment.boolean,environment.lower,'false',    'should we run in the background'),
     },
     'log' : {
      'enable'        : (environment.boolean,environment.lower,'true',     'enable logging'),
      'level'         : (environment.syslog_value,environment.syslog_name,'INFO', 'log message with at least the priority SYSLOG.<level>'),
      'destination'   : (environment.unquote,environment.quote,'stdout', 'where logging should log\n' \
                        '                                  syslog (or no setting) sends the data to the local syslog syslog\n' \
                        '                                  host:<location> sends the data to a remote syslog server\n' \
                        '                                  stdout sends the data to stdout\n' \
                        '                                  stderr sends the data to stderr\n' \
                        '                                  <filename> send the data to a file' \
      ),
      'all'           : (environment.boolean,environment.lower,'false',    'report debug information for everything'),
      'configuration' : (environment.boolean,environment.lower,'true',     'report command parsing'),
      'reactor'       : (environment.boolean,environment.lower,'true',     'report signal received, command reload'),
      'daemon'        : (environment.boolean,environment.lower,'true',     'report pid change, forking, ...'),
      'processes'     : (environment.boolean,environment.lower,'true',     'report handling of forked processes'),
      'network'       : (environment.boolean,environment.lower,'true',     'report networking information (TCP/IP, network state,...)'),
      'packets'       : (environment.boolean,environment.lower,'false',    'report BGP packets sent and received'),
      'rib'           : (environment.boolean,environment.lower,'false',    'report change in locally configured routes'),
      'message'       : (environment.boolean,environment.lower,'false',    'report changes in route announcement on config reload'),
      'timers'        : (environment.boolean,environment.lower,'false',    'report keepalives timers'),
      'routes'        : (environment.boolean,environment.lower,'false',    'report received routes'),
      'parser'        : (environment.boolean,environment.lower,'false',    'report BGP message parsing details'),
      'short'         : (environment.boolean,environment.lower,'false',    'use short log format (not prepended with time,level,pid and source)'),
     },
     'tcp' : {
      'timeout' : (environment.integer,environment.nop,'1',   'time we will wait on select (can help with unstable BGP multihop)\n'
                                                              '%sVERY dangerous use only if you understand BGP very well.' % (' '* 34)),
      'once': (environment.boolean,environment.lower,'false', 'only one tcp connection attempt per peer (for debuging scripts)'),
      'delay': (environment.integer,environment.nop,'0',      'start to announce route when the minutes in the hours is a modulo of this number'),
      'bind': (environment.optional_ip,environment.quote,'', 'IP to bind on when listening (no ip to disable)'),
      'port': (environment.integer,environment.nop,'179', 'port to bind on when listening'),
      'acl': (environment.boolean,environment.lower,'', '(experimental) unimplemented'),
     },
     'bgp' : {
      'openwait': (environment.integer,environment.nop,'60','how many second we wait for an open once the TCP session is established'),
     },
     'cache' : {
      'attributes'  :  (environment.boolean,environment.lower,'true', 'cache routes attributes (configuration and wire) for faster parsing'),
      'nexthops'    :  (environment.boolean,environment.lower,'true', 'cache routes next-hops'),
     },
     'api' : {
      'encoder'  :  (environment.api,environment.lower,'text', '(experimental) encoder to use with with external API (text or json)'),
     },
     'reactor' : {
      'speed' : (environment.real,environment.nop,'1.0', 'time of one reactor loop\n'
                                                         '%suse only if you understand the code.' % (' '* 34)),
     },
     # Here for internal use
     'internal' : {
      'name'    : (environment.nop,environment.nop,'ExaBGP', 'name'),
      'version' : (environment.nop,environment.nop,version,  'version'),
     },
     # Here for internal use
     'debug' : {
      'pdb' : (environment.boolean,environment.lower,'false','enable python debugger on errors'),
      'memory' : (environment.boolean,environment.lower,'false','command line option --memory'),
      'configuration' : (environment.boolean,environment.lower,'false','undocumented option: raise when parsing configuration errors'),
      'selfcheck' : (environment.boolean,environment.lower,'false','does a self check on the configuration file'),
      'route' : (environment.unquote,environment.quote,'','decode the route using the configuration'),
      'defensive' : (environment.boolean,environment.lower,'false', 'generate random fault in the code in purpose'),
     },
    }

    try:
        env = environment.setup(envfile)
    except environment.Error, e:
        parser.print_help()
        print '\nconfiguration issue,', str(e)
        sys.exit(1)
示例#8
0
def main ():
	options = docopt.docopt(usage, help=False)

	main = int(sys.version[0])
	secondary = int(sys.version[2])

	if main != 2 or secondary < 5:
		sys.exit('This program can not work (is not tested) with your python version (< 2.5 or >= 3.0)')

	if options["--version"]:
		print(version)
		sys.exit(0)

	if options["--decode"]:
		decode = ''.join(options["--decode"]).replace(':','').replace(' ','')
		if not is_hex(decode):
			print(usage)
			print 'Environment values are:\n' + '\n'.join(' - %s' % _ for _ in environment.default())
			print ("\n\n"
				   "The BGP message must be an hexadecimal string.\n"
				   "All colons or spaces are ignored, for example:\n"
				   " --decode 001E0200000007900F0003000101\n"
				   " --decode 001E:02:0000:0007:900F:0003:0001:01\n"
				   " --decode FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001E0200000007900F0003000101\n"
				   " --decode FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF:001E:02:0000:0007:900F:0003:0001:01\n"
				   " --decode 'FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 001E02 00000007900F0003000101'\n"
				  )
			sys.exit(1)
	else:
		decode = ''

	if options["--folder"]:
		etc = os.path.realpath(os.path.normpath(options["--folder"]))
	else:
		etc = os.path.realpath(os.path.normpath(os.environ.get('ETC','etc')))
	os.environ['ETC'] = etc

	envfile = 'exabgp.env' if not  options["--env"] else options["--env"]
	if not envfile.startswith('/'):
		envfile = '%s/%s' % (etc, envfile)

	from exabgp.configuration.environment import environment

	environment.application = 'exabgp'
	environment.configuration = {
		'profile' : {
			'enable'        : (environment.boolean,environment.lower,'false',    'toggle profiling of the code'),
			'file'          : (environment.unquote,environment.quote,'',         'profiling result file, none means stdout, no overwriting'),
		},
		'pdb' : {
			'enable'        : (environment.boolean,environment.lower,'false',    'on program fault, start pdb the python interactive debugger'),
		},
		'daemon' : {
	#		'identifier'    : (environment.unquote,environment.nop,'ExaBGP',     'a name for the log (to diferenciate multiple instances more easily)'),
			'pid'           : (environment.unquote,environment.quote,'',         'where to save the pid if we manage it'),
			'user'          : (environment.user,environment.quote,'nobody',      'user to run as'),
			'daemonize'     : (environment.boolean,environment.lower,'false',    'should we run in the background'),
		},
		'log' : {
			'enable'        : (environment.boolean,environment.lower,'true',     'enable logging'),
			'level'         : (environment.syslog_value,environment.syslog_name,'INFO', 'log message with at least the priority SYSLOG.<level>'),
			'destination'   : (environment.unquote,environment.quote,'stdout', 'where logging should log\n' \
			                  '                                  syslog (or no setting) sends the data to the local syslog syslog\n' \
			                  '                                  host:<location> sends the data to a remote syslog server\n' \
			                  '                                  stdout sends the data to stdout\n' \
			                  '                                  stderr sends the data to stderr\n' \
			                  '                                  <filename> send the data to a file' \
			),
			'all'           : (environment.boolean,environment.lower,'false',    'report debug information for everything'),
			'configuration' : (environment.boolean,environment.lower,'true',     'report command parsing'),
			'reactor'       : (environment.boolean,environment.lower,'true',     'report signal received, command reload'),
			'daemon'        : (environment.boolean,environment.lower,'true',     'report pid change, forking, ...'),
			'processes'     : (environment.boolean,environment.lower,'true',     'report handling of forked processes'),
			'network'       : (environment.boolean,environment.lower,'true',     'report networking information (TCP/IP, network state,...)'),
			'packets'       : (environment.boolean,environment.lower,'false',    'report BGP packets sent and received'),
			'rib'           : (environment.boolean,environment.lower,'false',    'report change in locally configured routes'),
			'message'       : (environment.boolean,environment.lower,'false',    'report changes in route announcement on config reload'),
			'timers'        : (environment.boolean,environment.lower,'false',    'report keepalives timers'),
			'routes'        : (environment.boolean,environment.lower,'false',    'report received routes'),
			'parser'        : (environment.boolean,environment.lower,'false',    'report BGP message parsing details'),
			'short'         : (environment.boolean,environment.lower,'false',    'use short log format (not prepended with time,level,pid and source)'),
		},
		'tcp' : {
			'once': (environment.boolean,environment.lower,'false', 'only one tcp connection attempt per peer (for debuging scripts)'),
			'delay': (environment.integer,environment.nop,'0',      'start to announce route when the minutes in the hours is a modulo of this number'),
			'bind': (environment.optional_ip,environment.quote,'', 'IP to bind on when listening (no ip to disable)'),
			'port': (environment.integer,environment.nop,'179', 'port to bind on when listening'),
			'acl': (environment.boolean,environment.lower,'', '(experimental) unimplemented'),
		},
		'bgp' : {
			'openwait': (environment.integer,environment.nop,'60','how many second we wait for an open once the TCP session is established'),
		},
		'cache' : {
			'attributes'  :  (environment.boolean,environment.lower,'true', 'cache all attributes (configuration and wire) for faster parsing'),
			'nexthops'    :  (environment.boolean,environment.lower,'true', 'cache routes next-hops (deprecated: next-hops are always cached)'),
		},
		'api' : {
			'encoder'  :  (environment.api,environment.lower,'text', '(experimental) default encoder to use with with external API (text or json)'),
			'highres'  :  (environment.boolean,environment.lower,'false','should we use highres timer in JSON'),
			'respawn'  :  (environment.boolean,environment.lower,'false','should we respawn a helper process if it dies'),
		},
		'reactor' : {
			'speed' : (environment.real,environment.nop,'1.0', 'time of one reactor loop\n'
			                                                   '%suse only if you understand the code.' % (' '* 34)),
		},
		# Here for internal use
		'internal' : {
			'name'    : (environment.nop,environment.nop,'ExaBGP', 'name'),
			'version' : (environment.nop,environment.nop,version,  'version'),
		},
		# Here for internal use
		'debug' : {
			'pdb' : (environment.boolean,environment.lower,'false','enable python debugger on errors'),
			'memory' : (environment.boolean,environment.lower,'false','command line option --memory'),
			'configuration' : (environment.boolean,environment.lower,'false','undocumented option: raise when parsing configuration errors'),
			'selfcheck' : (environment.boolean,environment.lower,'false','does a self check on the configuration file'),
			'route' : (environment.unquote,environment.quote,'','decode the route using the configuration'),
			'defensive' : (environment.boolean,environment.lower,'false', 'generate random fault in the code in purpose'),
		},
	}

	try:
		env = environment.setup(envfile)
	except environment.Error,e:
		print(usage)
		print '\nconfiguration issue,', str(e)
		sys.exit(1)
示例#9
0
def main():
    options = docopt.docopt(usage, help=False)

    main = int(sys.version[0])
    secondary = int(sys.version[2])

    if main != 2 or secondary < 5:
        sys.exit(
            'This program can not work (is not tested) with your python version (< 2.5 or >= 3.0)'
        )

    if options["--version"]:
        print(version)
        sys.exit(0)

    if options["--decode"]:
        decode = ''.join(options["--decode"]).replace(':', '').replace(' ', '')
        if not is_hex(decode):
            print(usage)
            print 'Environment values are:\n' + '\n'.join(
                ' - %s' % _ for _ in environment.default())
            print(
                "\n\n"
                "The BGP message must be an hexadecimal string.\n"
                "All colons or spaces are ignored, for example:\n"
                " --decode 001E0200000007900F0003000101\n"
                " --decode 001E:02:0000:0007:900F:0003:0001:01\n"
                " --decode FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001E0200000007900F0003000101\n"
                " --decode FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF:001E:02:0000:0007:900F:0003:0001:01\n"
                " --decode 'FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 001E02 00000007900F0003000101'\n"
            )
            sys.exit(1)
    else:
        decode = ''

    if options["--folder"]:
        etc = os.path.realpath(os.path.normpath(options["--folder"]))
    else:
        etc = os.path.realpath(os.path.normpath(os.environ.get('ETC', 'etc')))
    os.environ['ETC'] = etc

    envfile = 'exabgp.env' if not options["--env"] else options["--env"]
    if not envfile.startswith('/'):
        envfile = '%s/%s' % (etc, envfile)

    from exabgp.configuration.environment import environment

    environment.application = 'exabgp'
    environment.configuration = {
     'profile' : {
      'enable'        : (environment.boolean,environment.lower,'false',    'toggle profiling of the code'),
      'file'          : (environment.unquote,environment.quote,'',         'profiling result file, none means stdout, no overwriting'),
     },
     'pdb' : {
      'enable'        : (environment.boolean,environment.lower,'false',    'on program fault, start pdb the python interactive debugger'),
     },
     'daemon' : {
    #		'identifier'    : (environment.unquote,environment.nop,'ExaBGP',     'a name for the log (to diferenciate multiple instances more easily)'),
      'pid'           : (environment.unquote,environment.quote,'',         'where to save the pid if we manage it'),
      'user'          : (environment.user,environment.quote,'nobody',      'user to run as'),
      'daemonize'     : (environment.boolean,environment.lower,'false',    'should we run in the background'),
     },
     'log' : {
      'enable'        : (environment.boolean,environment.lower,'true',     'enable logging'),
      'level'         : (environment.syslog_value,environment.syslog_name,'INFO', 'log message with at least the priority SYSLOG.<level>'),
      'destination'   : (environment.unquote,environment.quote,'stdout', 'where logging should log\n' \
                        '                                  syslog (or no setting) sends the data to the local syslog syslog\n' \
                        '                                  host:<location> sends the data to a remote syslog server\n' \
                        '                                  stdout sends the data to stdout\n' \
                        '                                  stderr sends the data to stderr\n' \
                        '                                  <filename> send the data to a file' \
      ),
      'all'           : (environment.boolean,environment.lower,'false',    'report debug information for everything'),
      'configuration' : (environment.boolean,environment.lower,'true',     'report command parsing'),
      'reactor'       : (environment.boolean,environment.lower,'true',     'report signal received, command reload'),
      'daemon'        : (environment.boolean,environment.lower,'true',     'report pid change, forking, ...'),
      'processes'     : (environment.boolean,environment.lower,'true',     'report handling of forked processes'),
      'network'       : (environment.boolean,environment.lower,'true',     'report networking information (TCP/IP, network state,...)'),
      'packets'       : (environment.boolean,environment.lower,'false',    'report BGP packets sent and received'),
      'rib'           : (environment.boolean,environment.lower,'false',    'report change in locally configured routes'),
      'message'       : (environment.boolean,environment.lower,'false',    'report changes in route announcement on config reload'),
      'timers'        : (environment.boolean,environment.lower,'false',    'report keepalives timers'),
      'routes'        : (environment.boolean,environment.lower,'false',    'report received routes'),
      'parser'        : (environment.boolean,environment.lower,'false',    'report BGP message parsing details'),
      'short'         : (environment.boolean,environment.lower,'false',    'use short log format (not prepended with time,level,pid and source)'),
     },
     'tcp' : {
      'once': (environment.boolean,environment.lower,'false', 'only one tcp connection attempt per peer (for debuging scripts)'),
      'delay': (environment.integer,environment.nop,'0',      'start to announce route when the minutes in the hours is a modulo of this number'),
      'bind': (environment.optional_ip,environment.quote,'', 'IP to bind on when listening (no ip to disable)'),
      'port': (environment.integer,environment.nop,'179', 'port to bind on when listening'),
      'acl': (environment.boolean,environment.lower,'', '(experimental) unimplemented'),
     },
     'bgp' : {
      'openwait': (environment.integer,environment.nop,'60','how many second we wait for an open once the TCP session is established'),
     },
     'cache' : {
      'attributes'  :  (environment.boolean,environment.lower,'true', 'cache all attributes (configuration and wire) for faster parsing'),
      'nexthops'    :  (environment.boolean,environment.lower,'true', 'cache routes next-hops (deprecated: next-hops are always cached)'),
     },
     'api' : {
      'encoder'  :  (environment.api,environment.lower,'text', '(experimental) default encoder to use with with external API (text or json)'),
      'highres'  :  (environment.boolean,environment.lower,'false','should we use highres timer in JSON'),
      'respawn'  :  (environment.boolean,environment.lower,'false','should we respawn a helper process if it dies'),
     },
     'reactor' : {
      'speed' : (environment.real,environment.nop,'1.0', 'time of one reactor loop\n'
                                                         '%suse only if you understand the code.' % (' '* 34)),
     },
     # Here for internal use
     'internal' : {
      'name'    : (environment.nop,environment.nop,'ExaBGP', 'name'),
      'version' : (environment.nop,environment.nop,version,  'version'),
     },
     # Here for internal use
     'debug' : {
      'pdb' : (environment.boolean,environment.lower,'false','enable python debugger on errors'),
      'memory' : (environment.boolean,environment.lower,'false','command line option --memory'),
      'configuration' : (environment.boolean,environment.lower,'false','undocumented option: raise when parsing configuration errors'),
      'selfcheck' : (environment.boolean,environment.lower,'false','does a self check on the configuration file'),
      'route' : (environment.unquote,environment.quote,'','decode the route using the configuration'),
      'defensive' : (environment.boolean,environment.lower,'false', 'generate random fault in the code in purpose'),
     },
    }

    try:
        env = environment.setup(envfile)
    except environment.Error, e:
        print(usage)
        print '\nconfiguration issue,', str(e)
        sys.exit(1)
示例#10
0
#!/usr/bin/env python
# encoding: utf-8
"""
flow.py

Created by Thomas Mangin on 2010-01-14.
Copyright (c) 2009-2013  Exa Networks. All rights reserved.
"""

import unittest

from exabgp.configuration.environment import environment

env = environment.setup("")

from exabgp.bgp.message.update.nlri.flow import *
from exabgp.protocol.ip.inet import *
from exabgp.bgp.message.update.attribute.communities import *


class TestFlow(unittest.TestCase):
    def setUp(self):
        pass

    def test_rule(self):
        components = {
            "destination": Destination("192.0.2.0", 24),
            "source": Source("10.1.2.0", 24),
            "anyport_1": AnyPort(NumericOperator.EQ, 25),
        }
        messages = {