Skip to content

Commit

Permalink
wget skip certificate check
Browse files Browse the repository at this point in the history
The cisco website doesnt have a valid certificate so the wget commands need --no-check-certificate added.
  • Loading branch information
CorruptedPixl committed Feb 29, 2024
1 parent 64cd404 commit d805856
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/trex_book.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -335,20 +335,20 @@ Latest (stable) release:
----
[bash]>mkdir -p /opt/trex
[bash]>cd /opt/trex
[bash]>wget --no-cache https://trex-tgn.cisco.com/trex/release/latest
[bash]>wget --no-cache --no-check-certificate https://trex-tgn.cisco.com/trex/release/latest
[bash]>tar -xzvf latest
----

Latest (bleeding edge) version:
[source,bash]
----
[bash]>wget --no-cache https://trex-tgn.cisco.com/trex/release/be_latest
[bash]>wget --no-cache --no-check-certificate https://trex-tgn.cisco.com/trex/release/be_latest
----

To obtain a specific version:
[source,bash]
----
[bash]>wget --no-cache https://trex-tgn.cisco.com/trex/release/vX.XX.tar.gz #<1>
[bash]>wget --no-cache --no-check-certificate https://trex-tgn.cisco.com/trex/release/vX.XX.tar.gz #<1>
----
<1> where X.XX = major.minor version number as per https://trex-tgn.cisco.com/trex/doc/release_notes.html

Expand Down

0 comments on commit d805856

Please sign in to comment.