Method: Rbeapi::Api::Acl#delete

Defined in:
lib/rbeapi/api/acl.rb

#delete(name) ⇒ Boolean

delete will delete an existing ACL resource from the nodes current running configuration. If the delete method is called and the ACL does not exist, this method will succeed.

Commands

no ip access-list standard <name>

Parameters:

  • name (String)

    The ACL name to delete on the node.

Returns:

  • (Boolean)

    Returns true if the command completed successfully.

Since:

  • eos_version 4.13.7M



222
223
224
# File 'lib/rbeapi/api/acl.rb', line 222

def delete(name)
  configure("no ip access-list standard #{name}")
end