Advertisement
gusto2

F5 BIGIP LTM on AWS

Nov 4th, 2013
525
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. step-by-step LTM AWS
  2.  
  3. following doc http://support.f5.com/kb/en-us/products/big-ip_ltm/manuals/product/bigip-ve-setup-amazon-ec2-11-4-0/2.html
  4.  
  5. 1. create VPC: 10.0.0.0/16
  6.  
  7. 2. create subnets
  8. management 10.0.0.0/24
  9. external 10.0.1.0/24
  10. internal 10.0.2.0/24
  11.  
  12. 3. security group - web instances
  13. for testing it will be quite open
  14. outbound - all TCP / all ICMP
  15. inbound - 22, 80, 443 / all ICMP
  16.  
  17. 4. launch EC2 ami-f5ffe281
  18. - in the VPC subnet 10.0.0.0/24
  19. - add additional interface in the 10.0.1.0/24 subnet
  20. - allow-all-traffic security group
  21.  
  22. 5. adding 3rd network interface
  23. - create interface in the 10.0.2.0/24 subnet
  24. - use allow-all-traffic subnet
  25. - attach to the BIGIP interface
  26.  
  27. 6. assign public IP address to the management VPC IP
  28.  
  29. 7. assign admin password
  30. - login as root
  31. - tmsh modify auth password admin
  32. - tmsh save sys config
  33.  
  34. 8. assign secondary ip address
  35. - assign 10.0.1.101 to NIC within 10.0.1.0/24
  36. - allocate IP address
  37. - assign the IP address to 10.0.1.101
  38.  
  39. Note: Before these IP addresses can be used with the BIG-IP VE system, they must be configured within TMOS.
  40. Question: what does it mean in practice? Self IP?
  41.  
  42. 9. log in into VPC console
  43. - Setup / Next
  44. - Activate licence
  45. - add key, outbound connection: mgmt
  46. - provisioning: APM: Nominal, LTM: Nominal
  47. - BIGIP VE reboots
  48. - Setup Utility ›› Platform: (management port: DHCP, host: f5.apogado.com, root/admin username)
  49. - BIGIP reboots
  50.  
  51. At this point I see the BIGIP VE doesn't recognize the eth2 (internal) NIC, rebooting the instance.
  52.  
  53. 10. setting up network:
  54. - create VLANS (mac address represents
  55. - external, untagged 1.1
  56. - internal, untagged 1.2
  57. - created SelfIP for static (primary) IP addresses
  58. - disable src/dest check
  59.  
  60. 11. update VPC routing
  61. - set routing from the internal (10.0.2.0/24) network through internal BIGIP interface (alternatively set AutoMap for VS SNAT)
  62.  
  63. 11. created node/pool/virtual server
  64. - pool: 10.0.2.102:80
  65. - create virtual server 10.0.1.101:80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement