Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

A2S CACHE + XDP - Help request

daffyydaffyy Member

Hi,
I'm looking for a person who could add A2S CACHE function for source/source2 servers (counter-strike etc, example https://github.com/gnif/SteamQueryProxy/) to this firewall (https://github.com/gamemann/XDP-Firewall/) for a fee
Currently SteamQueryProxy is having trouble handling X-XXMpps making it eat up all the cpu.
Of course, this is paid help ;)

Comments

  • PacketsDecreaserPacketsDecreaser Member, Patron Provider

    Why not look for a hoster who will take care of the protection for you?

  • @PacketsDecreaser said:
    Why not look for a hoster who will take care of the protection for you?

    The best in my country is ovh-game and we know well how their new protection works + how long take to contact support

    Thanked by 2ethanblake87 Nepal
  • I faced the same problem, xdpa2scache helped me for the first time, but later in Ukraine I got bogged down by port bandwidth
    https://github.com/Synkstar/xdpa2scache

  • daffyydaffyy Member
    edited April 2025

    @Splendid9098 said:
    I faced the same problem, xdpa2scache helped me for the first time, but later in Ukraine I got bogged down by port bandwidth
    https://github.com/Synkstar/xdpa2scache

    If someone will be able to implement this in xdp-firewall with multiserver capability + test if it works - I am also able to pay.
    Bandwith is not an issue here

  • @daffyy said:

    @Splendid9098 said:
    I faced the same problem, xdpa2scache helped me for the first time, but later in Ukraine I got bogged down by port bandwidth
    https://github.com/Synkstar/xdpa2scache

    If someone will be able to implement this in xdp-firewall with multiserver capability + test if it works - I am also able to pay.
    Bandwith is not an issue here

    As far as I know cs2 uses the same a2s so this program should work for you

  • daffyydaffyy Member
    edited April 2025

    @Splendid9098 said:

    @daffyy said:

    @Splendid9098 said:
    I faced the same problem, xdpa2scache helped me for the first time, but later in Ukraine I got bogged down by port bandwidth
    https://github.com/Synkstar/xdpa2scache

    If someone will be able to implement this in xdp-firewall with multiserver capability + test if it works - I am also able to pay.
    Bandwith is not an issue here

    As far as I know cs2 uses the same a2s so this program should work for you

    Yes, but currently using xdp-firewall, so i need to integrate 2 xdp programs into 1
    I don't want to do it myself because I don't know it well

  • @PacketsDecreaser said:
    Why not look for a hoster who will take care of the protection for you?

    most of other options have crazy prices or they gonna start selling what their clients sell cheaper so free advertising + crazy prices vs one time payment w ovh, u do the calculations.

  • @Splendid9098 said:
    I faced the same problem, xdpa2scache helped me for the first time, but later in Ukraine I got bogged down by port bandwidth
    https://github.com/Synkstar/xdpa2scache

    libbpf: elf: skipping unrecognized data section(22) .eh_frame
    libbpf: elf: skipping relo section(23) .rel.eh_frame for section(22) .eh_frame
    libbpf: elf: skipping unrecognized data section(7) xdp_metadata
    libbpf: elf: skipping unrecognized data section(7) xdp_metadata
    libbpf: elf: skipping unrecognized data section(7) xdp_metadata
    libbpf: elf: skipping unrecognized data section(7) xdp_metadata
    libbpf: prog 'xdp_prog': BPF program load failed: Invalid argument
    libbpf: prog 'xdp_prog': -- BEGIN PROG LOAD LOG --
    Extension program changes packet data, while original does not
    processed 0 insns (limit 1000000) max_states_per_insn 0 total_states 0 peak_states 0 mark_read 0
    -- END PROG LOAD LOG --
    libbpf: prog 'xdp_prog': failed to load: -22
    libbpf: failed to load object '/etc/xdpa2scache/xdp.o'
    ERROR: failed to attach program to interface: Invalid argument
    ERROR: failed to attach program to interface
    

    I gave it a chance and unfortunately it can't be run :D So someone would have to help fix it

  • @daffyy said:

    @Splendid9098 said:
    I faced the same problem, xdpa2scache helped me for the first time, but later in Ukraine I got bogged down by port bandwidth
    https://github.com/Synkstar/xdpa2scache

    libbpf: elf: skipping unrecognized data section(22) .eh_frame
    libbpf: elf: skipping relo section(23) .rel.eh_frame for section(22) .eh_frame
    libbpf: elf: skipping unrecognized data section(7) xdp_metadata
    libbpf: elf: skipping unrecognized data section(7) xdp_metadata
    libbpf: elf: skipping unrecognized data section(7) xdp_metadata
    libbpf: elf: skipping unrecognized data section(7) xdp_metadata
    libbpf: prog 'xdp_prog': BPF program load failed: Invalid argument
    libbpf: prog 'xdp_prog': -- BEGIN PROG LOAD LOG --
    Extension program changes packet data, while original does not
    processed 0 insns (limit 1000000) max_states_per_insn 0 total_states 0 peak_states 0 mark_read 0
    -- END PROG LOAD LOG --
    libbpf: prog 'xdp_prog': failed to load: -22
    libbpf: failed to load object '/etc/xdpa2scache/xdp.o'
    ERROR: failed to attach program to interface: Invalid argument
    ERROR: failed to attach program to interface
    

    I gave it a chance and unfortunately it can't be run :D So someone would have to help fix it

    do you try running it with wsl?

  • yoursunnyyoursunny Member, IPv6 Advocate

    @daffyy said:
    Yes, but currently using xdp-firewall, so i need to integrate 2 xdp programs into 1

    You can chain two XDP programs via tail call:

    1. In the first program, instead of returning BPF_PASS, do a tail call to pass control to the second program.
    2. The second program works as normal.
    Thanked by 2tentor lichade
  • daffyydaffyy Member

    @yoursunny said:

    @daffyy said:
    Yes, but currently using xdp-firewall, so i need to integrate 2 xdp programs into 1

    You can chain two XDP programs via tail call:

    1. In the first program, instead of returning BPF_PASS, do a tail call to pass control to the second program.
    2. The second program works as normal.

    Thanks for the hint or solution :D
    I will try to implement it

  • daffyydaffyy Member
    edited May 2025

    Still looking for someone to merge xdp-firewall with xdpa2scache
    eone tried but couldn't make it :disappointed:

  • daffyydaffyy Member

    Up

  • @PacketsDecreaser said:
    Why not look for a hoster who will take care of the protection for you?

    wouldnt be you either way would it, although your point still stands

    @daffyy said:
    Hi,
    I'm looking for a person who could add A2S CACHE function for source/source2 servers (counter-strike etc, example https://github.com/gnif/SteamQueryProxy/) to this firewall (https://github.com/gamemann/XDP-Firewall/) for a fee
    Currently SteamQueryProxy is having trouble handling X-XXMpps making it eat up all the cpu.
    Of course, this is paid help ;)

    what location are you looking for protection in? what game server from OVH is available?

  • daffyydaffyy Member
    edited May 2025

    Poland, ovh-game is not an option in this case,
    Need someone to fix the mentioned xdp program for a fee , not a hoster

  • @daffyy said:
    Poland, ovh-game is not an option in this case,
    Need someone to fix the mentioned xdp program for a fee , not a hoster

    I see, any chance I can ask what game you are attempting to host, and if something like pterodactyl would be suitable for you?

    I might be able to help you out with something much much better than what you are asking for currently.

  • daffyydaffyy Member

    @ilikebeans said:

    @daffyy said:
    Poland, ovh-game is not an option in this case,
    Need someone to fix the mentioned xdp program for a fee , not a hoster

    I see, any chance I can ask what game you are attempting to host, and if something like pterodactyl would be suitable for you?

    I might be able to help you out with something much much better than what you are asking for currently.

    Unfortunately, as I mentioned, I am not looking for a hoster and ovh-game does not solve my problem, other solutions besides ovh significantly increase latency
    Thanks for offer anyway ;)

  • What NICs are you using? Are you positive you can run XDP?

  • ilikebeansilikebeans Member
    edited May 2025

    @daffyy said:

    @ilikebeans said:

    @daffyy said:
    Poland, ovh-game is not an option in this case,
    Need someone to fix the mentioned xdp program for a fee , not a hoster

    I see, any chance I can ask what game you are attempting to host, and if something like pterodactyl would be suitable for you?

    I might be able to help you out with something much much better than what you are asking for currently.

    Unfortunately, as I mentioned, I am not looking for a hoster and ovh-game does not solve my problem, other solutions besides ovh significantly increase latency
    Thanks for offer anyway ;)

    Hey, I already have a OVH Poland game2 dedicated server and have custom eBPF XDP application filters already made for most games, especially the ones that OVH already have filters for as I already have a server with OVH.

    Note: I also of course have A2S caching.

    There would be no increase in latency and a significant boost in protection, but I see where you’re coming from, all good!

    I hope you find what you’re looking for :smile:

  • daffyydaffyy Member
    edited May 2025

    @ilikebeans said:

    @daffyy said:

    @ilikebeans said:

    @daffyy said:
    Poland, ovh-game is not an option in this case,
    Need someone to fix the mentioned xdp program for a fee , not a hoster

    I see, any chance I can ask what game you are attempting to host, and if something like pterodactyl would be suitable for you?

    I might be able to help you out with something much much better than what you are asking for currently.

    Unfortunately, as I mentioned, I am not looking for a hoster and ovh-game does not solve my problem, other solutions besides ovh significantly increase latency
    Thanks for offer anyway ;)

    Hey, I already have a OVH Poland game2 dedicated server and have custom eBPF XDP application filters already made for most games, especially the ones that OVH already have filters for as I already have a server with OVH.

    Note: I also of course have A2S caching.

    There would be no increase in latency and a significant boost in protection, but I see where you’re coming from, all good!

    I hope you find what you’re looking for :smile:

    It is still an addiction, which Path has shown does not end well.
    I have to do it on current addresses over which I can't give up control and in your case it would involve a transfer to your account
    I need only a2s cache

  • @daffyy said:

    @ilikebeans said:

    @daffyy said:

    @ilikebeans said:

    @daffyy said:
    Poland, ovh-game is not an option in this case,
    Need someone to fix the mentioned xdp program for a fee , not a hoster

    I see, any chance I can ask what game you are attempting to host, and if something like pterodactyl would be suitable for you?

    I might be able to help you out with something much much better than what you are asking for currently.

    Unfortunately, as I mentioned, I am not looking for a hoster and ovh-game does not solve my problem, other solutions besides ovh significantly increase latency
    Thanks for offer anyway ;)

    Hey, I already have a OVH Poland game2 dedicated server and have custom eBPF XDP application filters already made for most games, especially the ones that OVH already have filters for as I already have a server with OVH.

    Note: I also of course have A2S caching.

    There would be no increase in latency and a significant boost in protection, but I see where you’re coming from, all good!

    I hope you find what you’re looking for :smile:

    It is still an addiction, which Path has shown does not end well.
    I have to do it on current addresses over which I can't give up control and in your case it would involve a transfer to your account
    I need only a2s cache

    Hey, that addition would be ran locally resulting in no noticeable lag or delay -- not even close to 1s.

    Do you currently have an OVH game, is that what you are trying to say?

  • daffyydaffyy Member

    @ilikebeans said:

    @daffyy said:

    @ilikebeans said:

    @daffyy said:

    @ilikebeans said:

    @daffyy said:
    Poland, ovh-game is not an option in this case,
    Need someone to fix the mentioned xdp program for a fee , not a hoster

    I see, any chance I can ask what game you are attempting to host, and if something like pterodactyl would be suitable for you?

    I might be able to help you out with something much much better than what you are asking for currently.

    Unfortunately, as I mentioned, I am not looking for a hoster and ovh-game does not solve my problem, other solutions besides ovh significantly increase latency
    Thanks for offer anyway ;)

    Hey, I already have a OVH Poland game2 dedicated server and have custom eBPF XDP application filters already made for most games, especially the ones that OVH already have filters for as I already have a server with OVH.

    Note: I also of course have A2S caching.

    There would be no increase in latency and a significant boost in protection, but I see where you’re coming from, all good!

    I hope you find what you’re looking for :smile:

    It is still an addiction, which Path has shown does not end well.
    I have to do it on current addresses over which I can't give up control and in your case it would involve a transfer to your account
    I need only a2s cache

    Hey, that addition would be ran locally resulting in no noticeable lag or delay -- not even close to 1s.

    Do you currently have an OVH game, is that what you are trying to say?

    Nope, I have a different server, I know the game can handle a2s but it can't handle other attacks on that application/game (bypass) so instead of bothering with support I prefer to have my own cache

  • daffyydaffyy Member

    Still looking for someone to do it for a fee ;)

  • kaitkait Member

    @daffyy said: Still looking for someone to do it for a fee ;)

    You won't get it.

    Thanked by 2ilikebeans PolyAnthi
  • @daffyy said:
    Hi,
    I'm looking for a person who could add A2S CACHE function for source/source2 servers (counter-strike etc, example https://github.com/gnif/SteamQueryProxy/) to this firewall (https://github.com/gamemann/XDP-Firewall/) for a fee
    Currently SteamQueryProxy is having trouble handling X-XXMpps making it eat up all the cpu.
    Of course, this is paid help ;)

    Did you manage to achieve anything?

  • @daffyy said:
    Hi,
    I'm looking for a person who could add A2S CACHE function for source/source2 servers (counter-strike etc, example https://github.com/gnif/SteamQueryProxy/) to this firewall (https://github.com/gamemann/XDP-Firewall/) for a fee
    Currently SteamQueryProxy is having trouble handling X-XXMpps making it eat up all the cpu.
    Of course, this is paid help ;)

    I'm also looking for info about this XDP

Sign In or Register to comment.