This gem for easy communication with Alcatel-Lucent 7302 devices. It currently allows you to execute commands on a device.
Add this line to your application's Gemfile:
gem 'alcatel'
And then execute:
$ bundle
Or install it yourself as:
$ gem install alcatel
a = Alcatel::Session.new(:host => 'hostname', :user => 'username', :password => 'password', :debug => true|false)
a.disable_igmp(rack, shelf, slot, port, vpi, vci)
a.enable_igmp(rack, shelf, slot, port, vpi, vci)
a.cmd('custom command')
a.logout
- Fork it ( https://github.com/[my-github-username]/alcatel/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request