aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
AgeCommit message (Expand)AuthorFilesLines
2017-12-13NAT64: multi-thread support (VPP-891)Matus Fabian2-0/+86
2017-10-30Remove old Python vppctl scriptChris Luke1-134/+0
2017-10-16udp: refactor udp codeFlorin Coras2-25/+72
2017-08-23NAT: Rename snat plugin to nat (VPP-955)Matus Fabian4-10/+10
2017-08-04SNAT: fix address and port allocation for multiple worker threads (VPP-925)Matus Fabian1-5/+12
2017-05-09Add support for tcp/session buffer chainsFlorin Coras1-2/+17
2017-05-05First commit SR MPLSPablo Camarillo7-118/+11
2017-04-19Fix "make dist" to include version number, docouple it from rpm packagingDamjan Marion1-8/+4
2017-04-13Session layer refactoringFlorin Coras1-1/+2
2017-03-13VPP-659 Improve tcp/session debugging and testingFlorin Coras1-0/+4
2017-03-10VPP-659 TCP improvementsFlorin Coras3-3/+28
2017-03-07DHCP Multiple Servers (VPP-602, VPP-605)Neale Ranns1-1/+2
2017-03-07CGN: Deterministic NAT (VPP-623)Matus Fabian1-0/+108
2017-03-04Cleanup URI code and TCP bugfixingFlorin Coras2-0/+66
2017-03-01VPP-598: tcp stack initial commitDave Barach5-8/+91
2017-02-28vlib: add buffer cloning supportDamjan Marion1-8/+11
2017-02-21dhcp: multiple additionsNeale Ranns1-0/+21
2017-02-02Fix SR multicast post mfib commitNeale Ranns1-0/+58
2017-01-27IP Multicast FIB (mfib)Neale Ranns1-0/+22
2017-01-27Add multi-vpp support back into pythonic vppctlEd Warnicke1-7/+20
2017-01-25[re]Enable per-Adjacency/neighbour countersNeale Ranns1-2/+16
2017-01-21Fix issue in rpm versioning for release buildsDamjan Marion1-1/+1
2017-01-13vppctl: new bash completion for vppctl commandsPadraig Connolly1-0/+30
2017-01-10Revert "vppctl: bash completion for vppctl commands"Damjan Marion1-30/+0
2017-01-09vppctl: bash completion for vppctl commandsPadraig Connolly1-0/+30
2017-01-03fix version.h generation for out-of-tree buildsDamjan Marion1-0/+54
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion78-0/+3766
m" { description = "The name of the algorithm to use for the key." type = string default = "ED25519" } # Variables for Placement Group variable "placement_group_strategy" { description = "The placement strategy. Can be cluster, partition or spread." type = string default = "cluster" } # Variables for Instance variable "tg_ami" { description = "AMI to use for the instance." type = string default = "ami-07430bfa17fd4e597" } variable "tg_associate_public_ip_address" { description = "Whether to associate a public IP address with an instance in a VPC." type = bool default = true } variable "tg_instance_initiated_shutdown_behavior" { description = "Shutdown behavior for the instance." type = string default = "terminate" } variable "tg_instance_type" { description = "The instance type to use for the instance." type = string default = "c6in.4xlarge" } variable "tg_private_ip" { description = "Private IP address to associate with the instance in a VPC." type = string default = "192.168.0.10" } variable "tg_source_dest_check" { description = "Controls if traffic is routed to the instance when the destination address does not match the instance." type = bool default = false } # Variables for Network Interface variable "tg_if1_private_ip" { description = "List of private IPs to assign to the ENI without regard to order." type = string default = "192.168.10.254" } variable "tg_if2_private_ip" { description = "List of private IPs to assign to the ENI without regard to order." type = string default = "192.168.10.11" } variable "destination_cidr_block_tg_if1" { description = "The destination CIDR block." type = string default = "10.0.0.0/16" } variable "destination_cidr_block_tg_if2" { description = "The destination CIDR block." type = string default = "20.0.0.0/16" } # Variables for Null Resource variable "first_run_commands" { description = "List of private IPs to assign to the ENI without regard to order." type = list(string) default = [ "sudo sed -i 's/^PasswordAuthentication/#PasswordAuthentication/' /etc/ssh/sshd_config", "sudo systemctl restart sshd", "sudo useradd --create-home -s /bin/bash provisionuser", "echo 'provisionuser:Csit1234' | sudo chpasswd", "echo 'provisionuser ALL = (ALL) NOPASSWD: ALL' | sudo tee -a /etc/sudoers", "sudo useradd --create-home -s /bin/bash testuser", "echo 'testuser:Csit1234' | sudo chpasswd", "echo 'testuser ALL = (ALL) NOPASSWD: ALL' | sudo tee -a /etc/sudoers" ] } # Variables for Null Resource variable "ansible_topology_path" { description = "Ansible topology path." type = string default = "../../fdio.infra.ansible/cloud_topology.yaml" }