NOTE: ue/enb/epc.conf should already be setup for normal single environment srsRAN+zmq
also this still has issues
ip netns add ue1
ip netns add ue2
| {% if messages %} | |
| {% for message in messages %} | |
| <div class="alert {% if message.tags %} alert-{{ message.tags }}{% endif %}">{{ message|safe }}</div> | |
| {% endfor %} | |
| {% endif %} | |
| {% if form.errors %} | |
| <div class="alert alert-error"> | |
| <h4>Please fix the following errors</h4> | |
| <ul> |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>WebSocket Client</title> | |
| <style> | |
| #output { | |
| border: solid 1px #000; | |
| } | |
| </style> | |
| </head> |
| ## | |
| ## ca-bundle.crt -- Bundle of CA Root Certificates | |
| ## | |
| ## Certificate data from Mozilla as of: Wed Jan 18 00:04:16 2012 | |
| ## | |
| ## This is a bundle of X.509 certificates of public Certificate Authorities | |
| ## (CA). These were automatically extracted from Mozilla's root certificates | |
| ## file (certdata.txt). This file can be found in the mozilla source tree: | |
| ## http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1 | |
| ## |
| <?php | |
| /** | |
| * CIDR.php | |
| * | |
| * Utility Functions for IPv4 ip addresses. | |
| * | |
| * @author Jonavon Wilcox <[email protected]> | |
| * @version Sat Jun 6 21:26:48 EDT 2009 | |
| * @copyright Copyright (c) 2009 Jonavon Wilcox | |
| */ |
| var app = {}; | |
| app.$colors = $('canvas.color-palette'); | |
| app.colorctx = app.$colors[0].getContext('2d'); | |
| // Build Color palette | |
| app.buildColorPalette = function() { | |
| var gradient = app.colorctx.createLinearGradient(0, 0, app.$colors.width(), 0); | |
| // Create color gradient |
| require 'rubygems' | |
| require 'mechanize' | |
| FIRST_NAME = 'FIRST_NAME' | |
| LAST_NAME = 'LAST_NAME' | |
| PHONE = 'PHONE' | |
| EMAIL = '[email protected]' | |
| PARTY_SIZE = 2 | |
| SCHEDULE_RANGE = { :start_time => '19:00', :end_time => '20:30' } |