Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function AixGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="ibm-aix">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration ibm-aix udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration ibm-aix udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function CiscoAsaGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-cisco-asa">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-cisco-asa udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-cisco-asa udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function CiscoFirepowerGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-cisco-firepower">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code="/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-cisco-firepower udp" />
<CodeBlock code="sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-cisco-firepower udp" />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function CiscoMerakiGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-meraki">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code="/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-meraki udp" />
<CodeBlock code="sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-meraki udp" />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function CiscoSwitchGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="cisco-switch">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code="/opt/utmstack-forwarder/utmstack_forwarder enable-integration cisco-switch udp" />
<CodeBlock code="sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration cisco-switch udp" />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function DeceptiveBytesGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="deceptive-bytes">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration deceptive-bytes udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration deceptive-bytes udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function EsetGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="antivirus-esmc-eset">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration antivirus-esmc-eset udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration antivirus-esmc-eset udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function FortigateGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-fortigate-traffic">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-fortigate-traffic udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-fortigate-traffic udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function FortiwebGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-fortiweb">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-fortiweb udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-fortiweb udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function GithubGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="github" hideTLS>
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code="/opt/utmstack-forwarder/utmstack_forwarder enable-integration github https" />
<CodeBlock code="sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration github https" />
<p className="mt-2 rounded-md bg-amber-500/10 border border-amber-500/30 px-3 py-2 text-[11px] text-amber-700 dark:text-amber-400">
{t(`${ROOT}.step1.tokenNote`)}
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function KasperskyGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="antivirus-kaspersky">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration antivirus-kaspersky udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration antivirus-kaspersky udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function MikroTikGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-mikrotik">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code="/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-mikrotik udp" />
<CodeBlock code="sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-mikrotik udp" />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function NetflowGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="netflow" hideTLS>
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code="/opt/utmstack-forwarder/utmstack_forwarder enable-integration netflow udp" />
<CodeBlock code="sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration netflow udp" />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ local5.* @<forwarder-ip>:${PORT}`
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="oracle">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration oracle udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration oracle udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>
<Section title={t(`${ROOT}.step2.title`)} step={3}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function PaloAltoGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-paloalto">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-paloalto udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-paloalto udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function PfSenseGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-pfsense">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-pfsense udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-pfsense udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function SentinelOneGuide({ module: _module }: { module: Integration }) {
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
{/* SentinelOne streams CEF syslog over TCP. */}
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration antivirus-sentinel-one tcp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration antivirus-sentinel-one tcp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function SonicWallGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-sonicwall">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-sonicwall udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-sonicwall udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function SophosXGGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="firewall-sophos-xg">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-sophos-xg udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration firewall-sophos-xg udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function SuricataGuide({ module: _module }: { module: Integration }) {
<ForwarderGuide source={t(`${ROOT}.source`)} port={PORT} sourceType="suricata">
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration suricata udp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration suricata udp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ esxcli network firewall refresh`
<Section title={t(`${ROOT}.step1.title`)} step={2}>
<p className="mb-2 text-sm text-foreground/90">{t(`${ROOT}.step1.body`)}</p>
{/* ESXi syslog uses TCP. */}
<CodeBlock code={`/opt/utmstack-forwarder/utmstack_forwarder enable-integration vmware-esxi tcp`} />
<CodeBlock code={`sudo /opt/utmstack-forwarder/utmstack_forwarder enable-integration vmware-esxi tcp`} />
<p className="mt-2 text-[11px] text-muted-foreground">{t(`${ROOT}.step1.note`)}</p>
</Section>

Expand Down
Loading