The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::OpenSSH::More::Linux - Useful subcommands for linux machines

VERSION

version 1.00

DESCRIPTION

This module contains useful methods to complement the parent's when in use on all linux environments.

NAME

Net::OpenSSH::More::Linux

ASSUMPTIONS

This module assumes that both the local and remote machine are some variant of GNU/Linux. Don't use this if that's not the case.

METHODS

get_primary_adapter

So, on linux, there's no "primary" adapter, just the "correct" adapter for whatever given route. As such, what's the best way to determine this?

This is a method to guess the "best" device interface from /proc/net/route. How does it determine this? By the "metric" stat -- the lower the better, as the lower the cost, the higher the preference. If you have set the metric improperly, you'll get bad results, but that's nothing to do with the code here.

Optionally accepts a truthy arg to indicate whether you want this for the local host instead of the remote host.

get_remote_ips

Returns HASH of the IPv4 & IPv6 SLAAC addresses of an optionally provided interface. If no interfaces is provided, use the default interface.

CAVEATS: This uses the 'ip' tool, so if your system is too old for this, perhaps consider writing your own getter for local IPs.

get_local_ips

Returns HASH of the IPv4 & IPv6 SLAAC addresses of an optionally provided interface. If no interfaces is provided, use the default interface. This one fetches it from the local machine and not the remote host, as sometimes that can be useful (say in the context of a test where you need this info). Same caveats that exist for get_remote_ips apply here.

copy

Effectively the same thing as `cp $SOURCE $DEST` on the remote server.

SEE ALSO

Please see those modules/websites for more information related to this module.

AUTHORS

Current Maintainers:

  • George S. Baugh <teodesian@gmail.com>

COPYRIGHT AND LICENSE

Copyright (c) 2024 Troglodyne LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.