Skip to content

Commit

Permalink
add articles
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-flip committed Oct 6, 2024
1 parent 6e032db commit f3af66c
Show file tree
Hide file tree
Showing 4 changed files with 164 additions and 0 deletions.
137 changes: 137 additions & 0 deletions APPLIANCE/Aruba HP Switch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
# Aruba HP Switch

[Source article (German)](https://sysadms.de/2018/10/16/aruba-switches-fuer-802-1x-authentifizierung-konfigurieren/)

## Radius - 802.1X

### Current Radius configuration

`show radius`

### Server Setup

<!-- tabs:start -->

#### **Add Server**

1. Enter configuration mode

`config`

1. Add the new Radius server

`radius-server host SERVERIP key PASSWORD`

1. Optionally, set the radius timeout and retransmit values

`radius-server timeout 5`

`radius-server retransmit 3`

1. Exit configuration mode

`end`

1. Save the configuration

`wr mem`

#### **Remove Server**

1. Enter configuration mode

`config`

1. Remove the old Radius server configuration

`no radius-server host SERVERIP`

1. Exit configuration mode

`end`

1. Save the configuration

`wr mem`

#### Enable 802.1X Globally

1. Enter configuration mode

`configure terminal`

1. Enable 802.1X globally

`aaa port-access authenticator active`

1. Exit configuration mode

`end`

1. Save the configuration

`write memory`

<!-- tabs:end -->

### Port Setup

<!-- tabs:start -->

#### **Add Port**

1. Enter configuration mode

`config`

1. Enter interface configuration mode for the specific port - optional; never used myself

`interface 1/1/1`

1. Enable 802.1X authentication on the port

`aaa port-access authenticator PORTNUMBER`

1. Configure Guest VLAN

`aaa port-access authenticator PORTNUMBER unauth-vid VID`

1. Configure VLAN if not provided via Radius

`aaa port-access authenticator PORTNUMBER auth-vid VID`

1. Set the port to controlled-direction in - optional; never used myself

`aaa port-access authenticator controlled-direction in`

1. Exit interface configuration mode - only needed if the "interfce" command has ran

`exit`

1. Exit configuration mode

`end`

1. Save the configuration

`wr mem`

#### **Remove Port**

1. Enter configuration mode

`config`

1. disable 802.1X authentication on the port

`no aaa port-access authenticator PORTNUMBER`

1. Exit configuration mode

`end`

1. Save the configuration

`wr mem`

<!-- tabs:end -->
Binary file added OS/Windows/_media-networking/dot3avc-service.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions OS/Windows/networking.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Networking

<!-- panels:start -->
<!-- div:title-panel -->
## Radius

<!-- div:left-panel -->
### Missing Radius Auth Settings

This could be because the service "dot3avc" is not running.

> [!Note]
> The service display name can be quite exotic in different languages. Make sure to use the "services.msc" instead of the one embedded in the Task manager, as the ladder uses the display name, making it impossible to find.
### Disable Network Radius

To stop authentication via cable, this service can be stopped. This is sometimes needed, if the computer is in a foreign network and tries to authenticate.

<!-- div:right-panel -->
![dot3avc service properties in German](_media-networking/dot3avc-service.png)

<!-- panels:end -->
5 changes: 5 additions & 0 deletions _sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
- [Node (JavaScript)](/programm-your-bot/node.md)
- [Python](/programm-your-bot/python/README.md)
- [Advanced](/programm-your-bot/python/advanced.md) -->
- **Appliance**
- [Aruba HP Switch](/APPLIANCE/Aruba%20HP%20Switch.md)
- **Operating Systems**
- Windows
- [Networking](/OS/Windows/networking.md)
- **📝 About the Wiki**
- [Home](/README.md)
- [License](/LICENSE.md)
Expand Down

0 comments on commit f3af66c

Please sign in to comment.