Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add syntax highlighting #19673

Merged
merged 6 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/install/npm/snmp/podman-eu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ headingText: SNMP security prerequisites
<Callout variant="tip">
The default trap listening port for **ktranslate** is port `1620 (TCP/UDP)`. To use the more common trap port of `162`, you will need to set an `iptables` pre-routing rule on the container host with the command:

```
```shell
sudo iptables -t nat -A PREROUTING -p udp --dport 162 -j REDIRECT --to-port 1620
```

Expand Down
2 changes: 1 addition & 1 deletion src/install/npm/snmp/podman-us.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ headingText: SNMP security prerequisites
<Callout variant="tip">
The default trap listening port for **ktranslate** is port `1620 (TCP/UDP)`. To use the more common trap port of `162`, you will need to set an `iptables` pre-routing rule on the container host with the command:

```
```shell
sudo iptables -t nat -A PREROUTING -p udp --dport 162 -j REDIRECT --to-port 1620
```

Expand Down
2 changes: 1 addition & 1 deletion src/install/npm/snmp/podman-usfedramp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ headingText: SNMP security prerequisites
<Callout variant="tip">
The default trap listening port for **ktranslate** is port `1620 (TCP/UDP)`. To use the more common trap port of `162`, you will need to set an `iptables` pre-routing rule on the container host with the command:

```
```shell
sudo iptables -t nat -A PREROUTING -p udp --dport 162 -j REDIRECT --to-port 1620
```

Expand Down
2 changes: 1 addition & 1 deletion src/install/npm/syslog/podman-eu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ headingText: Network syslog security prerequisites
<Callout variant="tip">
The default syslog listening port for **ktranslate** is port `5143 (TCP/UDP)`. To use the more common syslog port of `514`, you will need to set an `iptables` pre-routing rule on the container host with the command:

```
```shell
sudo iptables -t nat -A PREROUTING -p udp --dport 514 -j REDIRECT --to-port 5143
```

Expand Down
2 changes: 1 addition & 1 deletion src/install/npm/syslog/podman-us-fedramp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ headingText: Network syslog security prerequisites
<Callout variant="tip">
The default syslog listening port for **ktranslate** is port `5143 (TCP/UDP)`. To use the more common syslog port of `514`, you will need to set an `iptables` pre-routing rule on the container host with the command:

```
```shell
sudo iptables -t nat -A PREROUTING -p udp --dport 514 -j REDIRECT --to-port 5143
```

Expand Down
2 changes: 1 addition & 1 deletion src/install/npm/syslog/podman-us.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ headingText: Network syslog security prerequisites
<Callout variant="tip">
The default syslog listening port for **ktranslate** is port `5143 (TCP/UDP)`. To use the more common syslog port of `514`, you will need to set an `iptables` pre-routing rule on the container host with the command:

```
```shell
sudo iptables -t nat -A PREROUTING -p udp --dport 514 -j REDIRECT --to-port 5143
```

Expand Down
Loading