IP interface and Protocol + fix iptables

This commit is contained in:
DomySh
2022-07-12 15:47:31 +02:00
parent c4ab4c628e
commit 3034c66423
13 changed files with 243 additions and 145 deletions

View File

@@ -10,6 +10,8 @@ export type Service = {
status:string,
port:number,
ipv6:boolean,
proto: string,
ip_int: string,
n_packets:number,
n_regex:number,
}
@@ -17,7 +19,6 @@ export type Service = {
export type ServiceAddForm = {
name:string,
port:number,
ipv6:boolean,
proto:string,
ip_int:string,
}