- DENY: 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 fc00::/7 fe80::/10 (destination)
- ALLOW: 1.0.0.0/1 128.0.0.0/1 2000::/3 (source)
You can use dynu dynamic DNS service with Sagemcom routers by editing the custom profile.
- Username: account username
- Password: MD5 or SH256 hashed account password
- Hostname: registered domain name
- Server: api.dynu.com
- Port: 80
- Basic Authentication: Disabled
- Request:
http://api.dynu.com/nic/update?hostname=[DOMAIN]&password=[PASSWORD] - Update Interval: 10800
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RUN Copy-Item "\"${Env:ProgramFiles(x86)}\Windows Kits\10\Vsix\VS2019\WDK.vsix\"" 'C:\wdkvsix.zip' | |
| RUN Expand-Archive 'C:\wdkvsix.zip' -DestinationPath 'C:\WdkVsix' | |
| RUN Copy-Item 'C:\WdkVsix\$MSBuild\Microsoft\*' -Destination 'C:\BuildTools2019\MSBuild\Microsoft' -Recurse -Force | |
| RUN Remove-Item 'C:\WdkVsix' -Force -Recurse | |
| RUN Remove-Item 'C:\wdkvsix.zip' -Force |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # A script to install brew packages from a text file | |
| # Check if Homebrew is installed | |
| if ! command -v brew &> /dev/null | |
| then | |
| echo "Homebrew is not installed. Please install it first." | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # For more details, see: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/microsoft/#azure-ad-app-registration-auth-using-oidc | |
| data "azuread_client_config" "current" {} | |
| resource "azuread_application" "app_registration" { | |
| display_name = "Argo CD" | |
| sign_in_audience = "AzureADMyOrg" | |
| required_resource_access { | |
| resource_app_id = "00000003-0000-0000-c000-000000000000" # Microsoft Graph |