tmsh
list sys management-ip
modify sys global-settings mgmt-dhcp disabled
create sys management-ip 10.1.1.200/24
create sys management-route default gateway 10.1.1.1
show running-config sys
quit
ping 10.1.1.1
Author: admin
Curl web browsing.
ubuntu:~# apt-get install curl
ubuntu:~# curl http://www.ccie23050.com/?p=129
Apache restart on F5
bigstart restart httpd tomcat
F5 self IP from tmsh
tmsh
create net vlan external interfaces add { 1.1 { untagged } }
create net vlan internal interfaces add { 1.2 { untagged } }
create net self 10.1.10.245 address 10.1.10.245/24 vlan external
create net self 10.1.20.245 address 10.1.20.245/24 vlan internal
create net route Default_Gateway network 0.0.0.0/0 gw 10.1.10.254
save sys config
(tmos)# list net self address
net self 10.1.20.245 {
address 10.1.20.245/24
}
net self 10.1.10.245 {
address 10.1.10.245/24
}
Backup F5
tmsh
sys ucs
save ltmbackup.ucs
RFC 5735
Address Blocks for RFC 5735
——————————————————————
0.0.0.0/8 “This” Network RFC 1122, Section 3.2.1.3
10.0.0.0/8 Private-Use Networks RFC 1918
127.0.0.0/8 Loopback RFC 1122, Section 3.2.1.3
169.254.0.0/16 Link Local RFC 3927
172.16.0.0/12 Private-Use Networks RFC 1918
192.0.0.0/24 IETF Protocol Assignments RFC 5736
192.0.2.0/24 TEST-NET-1 RFC 5737
192.88.99.0/24 6to4 Relay Anycast RFC 3068
192.168.0.0/16 Private-Use Networks RFC 1918
198.18.0.0/15 Network Interconnect
Device Benchmark Testing RFC 2544
198.51.100.0/24 TEST-NET-2 RFC 5737
203.0.113.0/24 TEST-NET-3 RFC 5737
224.0.0.0/4 Multicast RFC 3171
240.0.0.0/4 Reserved for Future Use RFC 1112, Section 4
255.255.255.255/32 Limited Broadcast RFC 919, Section 7
RFC 922, Section 7
DNS OpCodes
0 Query [RFC1035]
1 IQuery (Inverse Query, OBSOLETE) [RFC3425]
2 Status [RFC1035]
3 Unassigned
4 Notify [RFC1996]
5 Update [RFC2136]
Rcodes
0 NoError No Error [RFC 1035]
1 FormErr Format Error [RFC 1035]
2 ServFail Server Failure [RFC 1035]
3 NXDomain Non-Existent Domain [RFC 1035]
4 NotImp Not Implemented [RFC 1035]
5 Refused Query Refused [RFC 1035]
ASA Capture
ASA capture
cap test1 inter match ip host 10.1.1.100 host 192.168.29.110
download to pc.
https://10.0.0.33/capture/test1/pcap
Ubuntu from PKCS12 to Certificates crt file and private key
openssl pkcs12 -in cert1.p12 -out cert1.crt.pem -clcerts -nokeys
openssl pkcs12 -in cert1.p12 -out cert1.key.pem -nocerts -nodes
Ubuntu Certificates crt file and private key to PKCS12
ubuntuccie23050:~/certmi$ cp cert.crt cert.pem
ubuntuccie23050:~/certdir$ ls
cert.crt cert.pem private.key
ubuntuccie23050:~/certmi$ openssl pkcs12 -export -in cert.pem -inkey private.key -out keyandcert1.p12
Enter Export Password:
Verifying – Enter Export Password:
ubuntuccie23050:~/certmi$ ls
cert.crt cert.pem private.key keyandcert1.p12
ubuntuccie23050:~/certmi$ exit