Downloads:
116
Downloads of v 0.11.0:
86
Last Update:
12 Aug 2024
Package Maintainer(s):
Software Author(s):
- fujiapple852
Tags:
trippy ip ping network traceroute tracert diagnostics- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Trippy (Portable)
- 1
- 2
- 3
0.11.0 | Updated: 12 Aug 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
116
Downloads of v 0.11.0:
86
Maintainer(s):
Software Author(s):
- fujiapple852
Trippy (Portable) 0.11.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by fujiapple852. The inclusion of fujiapple852 trademark(s), if any, upon this webpage is solely to identify fujiapple852 goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Trippy (Portable), run the following command from the command line or from PowerShell:
To upgrade Trippy (Portable), run the following command from the command line or from PowerShell:
To uninstall Trippy (Portable), run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download trippy --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade trippy -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade trippy -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install trippy
win_chocolatey:
name: trippy
version: '0.11.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'trippy' do
action :install
source 'INTERNAL REPO URL'
version '0.11.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller trippy
{
Name = "trippy"
Version = "0.11.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'trippy':
ensure => '0.11.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator Windos on 14 Aug 2024.
Trippy
Trippy combines the functionality of traceroute and ping and is designed to assist with the analysis of networking
issues.
Features
- Trace using multiple protocols:
ICMP
,UDP
&TCP
IPv4
&IPv6
- Customizable tracing options:
- packet size & payload pattern
- start and maximum time-to-live (TTL)
- minimum and maximum round duration
- round end grace period & maximum number of unknown hops
- source & destination port (
TCP
&UDP
) - source address and source interface
TOS
(akaDSCP + ECN
)
- Support for
classic
,paris
anddublin
Equal Cost Multi-path Routing
strategies (tracking issue) - RFC4884 ICMP Multi-Part Messages
- Generic Extension Objects
- MPLS Label Stacks
- Unprivileged mode
- Tui interface:
- Trace multiple targets simultaneously from a single instance of Trippy
- Per hop stats (sent, received, loss%, last, avg, best, worst, stddev, jitter & status)
- Per hop round-trip-time (RTT) history and frequency distributing charts
- Interactive chart of RTT for all hops in a trace with zooming capability
- Interactive GeoIp world map
- Isolate and filter by individual tracing flows
- Customizable color theme & key bindings
- Customizable column order and visibility
- Configuration via both command line arguments and a configuration file
- Show multiple hosts per hop with ability to cap display to N hosts and show frequency %
- Show hop details and navigate hosts within each hop
- Freeze/unfreeze the Tui, reset the stats, flush the cache, preserve screen on exit
- Responsive UI with adjustable refresh rate
- Hop privacy
- DNS:
- Use system, external (Google
8.8.8.8
or Cloudflare1.1.1.1
) or custom resolver - Lazy reverse DNS queries
- Lookup autonomous system number (ASN) and name
- Use system, external (Google
- GeoIp:
- Generate tracing reports:
json
,csv
& tabular (pretty-printed and markdown)- Tracing
flows
report - Graphviz
dot
charts - configurable reporting cycles
- Runs on multiple platform (macOS, Linux, Windows, NetBSD, FreeBSD, OpenBSD)
- Capabilities aware application (Linux only)
Privileges
Trippy normally requires elevated privileges due to the use of raw sockets. Enabling the required privileges for your
platform can be achieved in several ways, as outlined below. Trippy can also be used without elevated privileged on
certain platforms, with some limitations.
Trippy must be run with Administrator privileges on Windows.
Usage Examples
Basic usage with default parameters:
trip example.com
Trace without requiring elevated privileges (supported platforms only, see privileges):
trip example.com --unprivileged
Trace using the udp
(or tcp
or icmp
) protocol (also aliases --icmp
, --udp
& --tcp
):
trip example.com -p udp
Trace to multiple targets simultaneously (icmp
protocol only,
see #72):
trip example.com google.com crates.io
Trace with a minimum round time of 250ms
and a grace period of 50ms
:
trip example.com -i 250ms -g 50ms
Package Parameters:
/GnuVersion
Install GNU version. By default MSVC version is installed.
eg. choco install -y trippy --package-parameters="/GnuVersion"
Get-Process -Name "trip" -ErrorAction SilentlyContinue | Stop-Process -Force
Log in or click on link to see number of positives.
- trippy.0.11.0.nupkg (429100c080a2) - ## / 68
- trippy-0.11.0-x86_64-pc-windows-msvc.zip (ff0e75145975) - ## / 69
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Trippy (Portable) 0.11.0 | 86 | Monday, August 12, 2024 | Approved | |
Trippy (Portable) 0.10.0 | 30 | Tuesday, July 23, 2024 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Trippy (Portable) and the Trippy (Portable) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Trippy (Portable), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.