akaer

Gem Version Dependency Status Build Status Code Climate Coverage Status

A small utility to add aliases to network interfaces.

http://sw.cow.tc/akaer

http://rdoc.info/gems/akaer

Description

Akaer is a small utility that adds and removes aliases to your network interfaces. This is useful in web development.

Basic usage

  1. Install the gem:

    gem install akaer
    
  2. Run the application:

    akaer
    

You're done!

Advanced usage

Just type akaer --help and you'll see all available options.

Configuration

By defaults, Akaer uses a configuration file in ~/.akaer_config, but you can change the path using the --config switch.

The file is a plain Ruby file with a single config object that supports the following directives.

  • interface: The network interface to manage. lo0 by default.
  • addresses: A specific list of aliases to manage.
  • start_address: The address to start sequential address. 10.0.0.1 by default. Not used if addresses is specified.
  • aliases: The number of sequential addresses to add. 5 by default.
  • add_command: The command to run for adding an alias. sudo ifconfig {{interface}} alias {{address}} by default.
  • remove_command: The command to run for removing an alias. sudo ifconfig {{interface}} -alias {{address}} by default.
  • log_file: The default log file. By default it logs to standard output.
  • log_level: The default log level. Valid values are from 0 to 5 where 0 means "all messages".
  • dry_run: Only show which modifications will be done.
  • quiet: Do not show any message.

Contributing to akaer

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright (C) 2013 and above Shogun ([email protected]).

Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.