REVIEW 4 major objections 6 minor 53 references
Automating Conflict-Aware ACL Configurations with Natural Language Intents
T0 review · 4 major / 6 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read This paper argues that network operators can move from plain-language intents to complete, conflict-free, deployment-optimized ACL rules without hand-crafting prefixes and ports.
desk verdict A credible LLM-to-ACL pipeline that solves a real NetOps pain point, but the headline claims outrun the synthetic evaluation's path model. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanisms are three named constructs. Truly-Matched Flows (TMF) gives each rule its actual jurisdiction: $T_k = R_k - \bigcup_{i<k} T_i$, so conflicts are judged only on flows the rule really decides, not flows shadowed by earlier entries. Interface-path validation then asks whether a flagged conflict flow has any feasible route through that interface. Equivalent Intent Sets (EIS) gather all intents that could be satisfied by the same rule insertion given existing same-action rules on an interface, and the deployment optimizer turns these into integer programs over interfaces and paths. The Semantics-Network Mapping Table supplies the network ground truth that prevents the LLM from hallucinating prefixes and gateways.
What would settle it
In a topology with ECMP load-balancing over eight equal-cost paths, feed Xumi only the four shortest paths and put an existing deny rule on an excluded path; then submit a permit intent whose traffic would traverse that path. If Xumi reports no conflict while live traffic is denied, the path-completeness assumption fails.
Extended reading notes
Core claim
Xumi's central claim is that ACL configuration has a complete automation path if three problems are solved jointly. First, comprehension: a large language model, grounded by a Semantics-Network Mapping Table that names endpoints, prefixes, and gateways, fills a structured ACL Intermediate Representation that network operators review. Second, conflict detection: for every existing rule at position k, the system computes the flows the rule truly governs by subtracting flows already matched by higher-priority rules, $T_k = R_k - \bigcup_{i<k} T_i$, and then validates that a candidate conflict's traffic can actually route through the interface; this removes the false positives that make naive overlap detection roughly 70% less accurate. Third, deployment optimization: grouping intents by equivalent coverage and choosing bottleneck interfaces for deny rules minimizes total rule additions. With these components, the paper reports complete configuration of 20 cloud-network intents in about five minutes, conflict detection on hundreds of ACLs, and roughly 38.8% fewer deployed rules than baseline practice.
Load-bearing premise
Xumi assumes it knows the routing paths every flow will take; if real routing (for example, ECMP or BGP changes) sends traffic over paths outside the assumed set, conflicts will be missed and the deployment plan may place rules on the wrong interfaces.
Editorial extensions
If this is right
- An operator can submit an intent like 'block ChatGPT in exam areas during finals' and receive complete ACL rules plus a deployment plan, with the human role reduced to approving the LLM's output.
- Real conflicts are distinguished from false positives caused by shadowed rules and infeasible paths, so problems can be fixed before deployment rather than after users complain.
- Fewer rules are inserted, about 40% fewer than today's practice, because deny rules can be placed at bottleneck interfaces and one rule can cover multiple intents with existing rules.
- On a 171-router cloud network, 20 intents are configured end-to-end in about five minutes, and even an extreme-scale network finishes conflict detection in at most two hours.
- The same translate-conflict-optimize workflow is proposed for future routing configuration automation, not just ACLs.
Reading between the lines
- The subtraction idea behind truly-matched flows should transfer to any policy engine with ordered rules, such as firewall chains, security groups, or routing policies, where the effective rule for a packet is the first match.
- A direct stress test would replace the static shortest-path assumption with live routing state from ECMP or BGP and measure how many reported conflicts change; that gap would quantify how much of Xumi's accuracy depends on path completeness.
- The paper's own trend of larger savings at higher conflict ratios and larger topologies suggests the roughly 40% rule-reduction figure is a floor for dense, highly conflicted networks rather than a ceiling.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents Xumi, an LLM-based system that automates ACL configuration from natural language intents in three stages. Intent Comprehension uses a Semantics-Network Mapping Table (SNMT) and hallucination-mitigating prompts to translate intents into an intermediate representation and then into concrete ACL rules. Conflict Detection & Resolution computes truly-matched flows (TMF) to avoid false positives caused by preceding rules and performs interface-path validation to filter conflicts that do not lie on feasible routing paths; conflicts are then resolved via operator-supplied 'protect' intents. Deployment Optimization formulates set-cover-style integer programs that exploit bottleneck deployment and equivalent intent sets to minimize the total number of added rules while satisfying all intents. The system is evaluated on three synthetic networks (41, 171, and 1026 routers) with four LLMs, reporting comprehension accuracy up to 98.5% without feedback, conflict detection accuracy 3.33x above the blind-overlap baseline, ~40% rule-additions reduction, and an end-to-end speedup of over 10x versus the baseline pipeline.
Significance. If the reported results hold under realistic conditions, Xumi would be a substantial step toward intent-based network management, reducing the manual effort of ACL translation, conflict resolution, and deployment planning. The paper's genuine strengths are the TMF concept for accurate conflict detection, the equivalent-intent-set formulation for deployment optimization, the careful handling of flow-set operations with bitarray encodings, and the broad ablation study across network scales and LLMs. The prompts are open-sourced, which is commendable for reproducibility. However, the central correctness claims are conditioned on an untested routing model, the evaluation is entirely synthetic, and half of the comprehension test intents are generated by the same model family used as the best test model. These issues require additional work before the headline claims can be accepted as stated.
major comments (4)
- [§8.1, §9, Algorithm 1, §6.2 Constraints (4)–(5)] The correctness of both conflict detection and deployment optimization is tied to the path set returned by Routing(...) in Algorithm 1, line 3, which in every experiment is instantiated as k-shortest paths with k=4 (§8.1). Section 9 states that routing is assumed 'correct and predefined.' In real deployments, ECMP, BGP policy, and traffic engineering produce path sets that can differ from a static top-k set; if a conflicting flow uses a path outside the model, Algorithm 1 line 4 returns False and the conflict is silently dropped, and Constraints (4)–(5) can yield a deployment plan that leaves an actual path unprotected. Because the evaluation never varies k, never compares against routing-table-derived paths, and never measures the sensitivity to path-set errors, the abstract's 'all potential conflicts' and the ~40% rule-reduction claims are not established for realistic routing. Please either validate against realistic routing tables, perform a sensitivity analysis over the path model (including both fewer and more paths), or explicitly re-frame the correctness claims as holding 'under the assumed routing model.'
- [§8.1, §8.3, Table 3] The comprehension accuracy numbers are measured on a dataset of 100 intents per network, of which 50 are manually crafted and 50 are generated by GPT-4o (§8.1). Reported accuracy, such as the 90% CloudNet figure with GPT-4o, is a joint number over both groups; since the same model family generated half of the test set, the results may be inflated by self-generation bias. Please report accuracy separately for manually crafted and LLM-generated intents, and for protect intents, across all four LLMs, so that the reader can assess the size of this effect.
- [§8.4] Conflict detection accuracy is defined as 'the proportion of existing rules where the correct conflict flow set is identified for the new intent rule.' Because the ground-truth conflict sets are computed under the same k-shortest path model that Xumi uses internally, the reported 3.33x improvement over the blind-overlap baseline demonstrates internal consistency of the TMF and path-validation logic rather than robustness to realistic routing. The paper should additionally report recall-oriented metrics, such as the number of missed conflict flows or conflict intents, and explicitly analyze the causes of any false negatives, especially those that arise from paths not present in the assumed routing model.
- [§8.2, Table 3] The headline 'over 10x' acceleration in Table 3 depends on the Baseline comprehension time of about 237 seconds for 20 intents, which is reported as coming from 'a simple user study with NetOps' (§8.2). No protocol, participant count, task description, or variance is provided, and this single number is used to compute the primary speedup claim. Please either report the full study details or replace this estimate with a reproducible measurement, for example by running the baseline comprehension loop without the hallucination mitigators on the same intent dataset.
minor comments (6)
- [§8.4] The text contains a typo: 'Figrue' should be 'Figure.'
- [§5.1] The displayed formula for T_k contains a formatting artifact ('T1 =R11'); please typeset the initialization and the set-difference expression clearly.
- [§6.2] The logical symbols in Constraints (2), (4), and (5) are rendered as corrupted glyphs ('Ü', 'Ô', 'Û'); please replace them with standard OR and AND notation, and check that the logical structure is unambiguous.
- [§6.2] The phrase 'the rule count for each resolved intent RI_i donated as t_i' should read 'denoted as t_i.'
- [Figure 2] The labels in Figure 2 (parts b–d) are cramped and hard to read, especially the deployment-interface annotations; please enlarge the fonts and spacing for camera-readiness.
- [§8.3] The phrase 'inExtremeNet' is missing a space; it should read 'in ExtremeNet.'
Circularity Check
No significant circularity: Xumi's pipeline is a genuine synthesis; the reported gains come from solving stated detection and optimization problems against explicit baselines, not from fitted inputs renamed as predictions.
full rationale
Xumi's derivation chain is self-contained and not circular. The three modules are disjoint: Intent Comprehension is an LLM prompting pipeline whose output is reviewed and approved by NetOps, and its accuracy is measured against the structured IR tuples used to construct each intent rather than against the pipeline's own output; the ablation results show genuine incremental value of CoT, few-shot, and self-reflection. Conflict Detection computes Truly-Matched Flows by set differences over existing ACLs and validates interfaces against known routing paths (Algorithm 1); the accuracy comparison against BO, BO+TMF, and BO+Path applies the same path model and existing-rule sets to all methods, so the reported 3.33x gain is an algorithmic comparison, not a reduction of the measured quantity to the method's own assumptions. Deployment Optimization is an explicit integer program (Eqs. 1-5) whose objective is rule additions and whose constraints encode intent satisfaction via the equivalent-intent-set definition; the ~38.8% rule reduction is the optimization gap against deliberately simpler baselines (Endpoint, Catch-All, Bottleneck), not a value fitted to the reported outcome in advance. The only self-citation with overlapping authors is [19] (NAssim) in the Related Work section, used solely to support the peripheral assumption that vendor configuration templates exist; it is not load-bearing for any central claim, and no uniqueness theorem or ansatz is imported from the authors' prior work. The acknowledged limitation in Section 9 that routing is assumed 'correct and predefined,' together with the evaluation's use of k-shortest paths with k=4, is an external-validity and correctness risk (real routing paths outside the assumed set could cause missed conflicts or suboptimal placements), but it is not a circularity: the conflict-detection and deployment logic do not define their results in terms of the same path set they claim to predict. No fitted parameter is renamed as a prediction, and the central claims do not reduce by construction to any input of the system.
Assumptions & free parameters
free parameters (1)
- k (number of shortest paths used to model feasible routing paths) =
4
assumptions (5)
- standard math ACL rules are processed top-down and the first matched rule's action applies.
- domain assumption Feasible routing paths between endpoints are known to Xumi and are modeled as k-shortest paths with k=4 in the evaluation.
- domain assumption New intents within the same configuration round are mutually conflict-free.
- domain assumption The SNMT is accurate and timely for all entity-to-prefix and gateway mappings.
- domain assumption Each interface's ACL ends with a default rule (deny all for CampusNet, permit all for CloudNet/ExtremeNet).
Cite this review
Pith. "Pith review of Automating Conflict-Aware ACL Configurations with Natural Language Intents." pith.science (2026). https://pith.science/paper/EB76MJZY
@misc{pith2026250817990,
author = {Pith},
title = {Pith review of: Automating Conflict-Aware ACL Configurations with Natural Language Intents},
year = {2026},
howpublished = {\url{https://pith.science/paper/EB76MJZY}},
note = {Machine review of arXiv:2508.17990}
}
read the original abstract
ACL configuration is essential for managing network flow reachability, yet its complexity grows significantly with topologies and pre-existing rules. To carry out ACL configuration, the operator needs to (1) understand the new configuration policies or intents and translate them into concrete ACL rules, (2) check and resolve any conflicts between the new and existing rules, and (3) deploy them across the network. Existing systems rely heavily on manual efforts for these tasks, especially for the first two, which are tedious, error-prone, and impractical to scale. We propose Xumi to tackle this problem. Leveraging LLMs with domain knowledge of the target network, Xumi automatically and accurately translates the natural language intents into complete ACL rules to reduce operators' manual efforts. Xumi then detects all potential conflicts between new and existing rules and generates resolved intents for deployment with operators' guidance, and finally identifies the best deployment plan that minimizes the rule additions while satisfying all intents. Evaluation shows that Xumi accelerates the entire configuration pipeline by over 10x compared to current practices, addresses O(100) conflicting ACLs and reduces rule additions by ~40% in modern cloud network.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[1]
Azure Global DC Network.https://azure.microsoft.com/en-us/explore/ global-infrastructure
-
[2]
https://azure.microsoft.com/en-us/products/ ai-services/openai-service/
Azure OpenAI Service. https://azure.microsoft.com/en-us/products/ ai-services/openai-service/
-
[3]
Cisco ACL. https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/ iproute_ospf/configuration/xe-16/iro-xe-16-book/iro-cfg.html
-
[4]
https://www.cisco.com/c/en/us/products/ios-nx-os- software/border-gateway-protocol-bgp/index.html
Cisco BGP. https://www.cisco.com/c/en/us/products/ios-nx-os- software/border-gateway-protocol-bgp/index.html
-
[5]
Graph-Based Live Queries in AOS. https://apstra.com/products/
- [6]
-
[7]
https://www.h3c.com/en/d_201907/1213007_294551_0.htm
H3C ACL. https://www.h3c.com/en/d_201907/1213007_294551_0.htm
-
[8]
https://support.huawei.com/enterprise/en/doc/ EDOC1000178177/d8968298/configuring-a-basic-acl
Huawei ACL. https://support.huawei.com/enterprise/en/doc/ EDOC1000178177/d8968298/configuring-a-basic-acl
Show all 53 references
-
[9]
https://huggingface.co/
Hugging Face. https://huggingface.co/
-
[10]
https://huggingface.co/nvidia/Llama-3.1-70B- Instruct-FP8
Llama3.1-70B-FP8. https://huggingface.co/nvidia/Llama-3.1-70B- Instruct-FP8
-
[11]
http://openconfig.net/
OpenConfig. http://openconfig.net/
-
[12]
https://pypi.org/project/bitarray/
Python Bitarray. https://pypi.org/project/bitarray/
-
[13]
https://huggingface.co/Qwen/Qwen2.5-72B- Instruct-GPTQ-Int4
Qwen2.5-72B-Int4. https://huggingface.co/Qwen/Qwen2.5-72B- Instruct-GPTQ-Int4
-
[14]
https://anonymous.4open.science/r/Comprehension- opensource-17C8
Xumi. https://anonymous.4open.science/r/Comprehension- opensource-17C8
-
[15]
https://developer.cisco.com/docs/nso/guides/the-yang- data-modeling-language/
YANG Model. https://developer.cisco.com/docs/nso/guides/the-yang- data-modeling-language/
-
[16]
NetComplete: Practical Network-Wide Configuration Synthesis with Autocompletion
Ahmed El-Hassany and Petar Tsankov and Laurent Vanbever and Martin Vechev. NetComplete: Practical Network-Wide Configuration Synthesis with Autocompletion. In Proc. USENIX NSDI, 2018
2018
-
[17]
A Scalable, Commodity Data Center Network Architecture
Al-Fares, Mohammad and Loukissas, Alexander and Vahdat, Amin. A Scalable, Commodity Data Center Network Architecture. InProc. ACM SIGCOMM, 2008
2008
-
[18]
A General Approach to Network Configuration Verification
Ryan Beckett, Aarti Gupta, Ratul Mahajan, and David Walker. A General Approach to Network Configuration Verification. In Proc. ACM SIGCOMM, 2017
2017
-
[19]
Software-Defined Network Assimilation: Bridging the Last Mile Towards Centralized Network Configuration Management with NAssim
Huangxun Chen, Yukai Miao, Li Chen, Haifeng Sun, Hong Xu, Li- bin Liu, Gong Zhang, and Wei Wang. Software-Defined Network Assimilation: Bridging the Last Mile Towards Centralized Network Configuration Management with NAssim. In Proc. ACM SIGCOMM, 2022
2022
-
[20]
Detecting Vague Words & Phrases in Require- ments Documents in A Multilingual Environment
Cruz, Breno Dantas and Jayaraman, Bargav and Dwarakanath, Anurag and McMillan, Collin. Detecting Vague Words & Phrases in Require- ments Documents in A Multilingual Environment. In 2017 IEEE 25th International Requirements Engineering Conference (RE) , 2017
2017
-
[21]
Named Entity Recognition and Classi- fication in Historical Documents: A Survey
Maud Ehrmann, Ahmed Hamdi, Elvys Linhares Pontes, Matteo Ro- manello, and Antoine Doucet. Named Entity Recognition and Classi- fication in Historical Documents: A Survey. 56(2):1–47, Sep. 2023
2023
-
[22]
A General Approach to Network Configuration Analysis
Fogel, Ari and Fung, Stanley and Pedrosa, Luis and Walraed-Sullivan, Meg and Govindan, Ramesh and Mahajan, Ratul and Millstein, Todd. A General Approach to Network Configuration Analysis. In Proc. USENIX NSDI, 2015
2015
-
[23]
Fast Control Plane Analysis Using an Abstract Repre- sentation
Aaron Gember-Jacobson, Raajay Viswanathan, Aditya Akella, and Ratul Mahajan. Fast Control Plane Analysis Using an Abstract Repre- sentation. In Proc. ACM SIGCOMM, 2016
2016
-
[24]
Abandah and Ashraf Suyyagh and Mohammed Z
Gheith A. Abandah and Ashraf Suyyagh and Mohammed Z. Khed- her. Correcting Arabic Soft Spelling Mistakes using BiLSTM-based Machine Learning. arXiv preprint arXiv:2108.01141, 2021
2021 arXiv
-
[25]
An Efficient System for Grammatical Error Correction on Mobile Devices
Gothe, Sourabh Vasant and Dogra, Sushant and Chandra, Mritunjai and Sanchi, Chandramouli and Raja, Barath Raj Kandur. An Efficient System for Grammatical Error Correction on Mobile Devices. In 2021 IEEE 15th International Conference on Semantic Computing (ICSC) , 2021
2021
-
[26]
Achieving High Utilization with Software-Driven WAN
Chi-Yao Hong, Srikanth Kandula, Ratul Mahajan, Ming Zhang, Vi- jay Gill, Mohan Nanduri, and Roger Wattenhofer. Achieving High Utilization with Software-Driven WAN. InProc. ACM SIGCOMM, 2013
2013
-
[27]
Jacobs, Ricardo J
Arthur S. Jacobs, Ricardo J. Pfitscher, Rafael H. Ribeiro, Ronaldo A. Ferreira, Lisandro Z. Granville, Walter Willinger, and Sanjay G. Rao. Hey, Lumi! Using Natural Language for Intent-Based Network Man- agement. In Proc. USENIX ATC, 2021
2021
-
[28]
B4: Experience with a Globally-Deployed Software Defined WAN
Sushant Jain, Alok Kumar, Subhasree Mandal, Joon Ong, Leon Poutievski, Arjun Singh, Subbaiah Venkata, Jim Wanderer, Junlan Zhou, Min Zhu, Jon Zolla, Urs Hölzle, Stephen Stuart, and Amin Vah- dat. B4: Experience with a Globally-Deployed Software Defined WAN. In Proc. ACM SIGCOMM, 2013
2013
-
[29]
Survey of Hallucination in Natural Language Generation
Ji, Ziwei and Lee, Nayeon and Frieske, Rita and Yu, Tiezheng and Su, Dan and Xu, Yan and Ishii, Etsuko and Bang, Ye Jin and Madotto, An- drea and Fung, Pascale. Survey of Hallucination in Natural Language Generation. ACM Computing Surveys, 55(12):1–38, March 2023
2023
-
[30]
Mistral 7B.arXiv preprint arXiv:2310.06825, 2023
Jiang, Albert Q and Sablayrolles, Alexandre and Mensch, Arthur and Bamford, Chris and Chaplot, Devendra Singh and Casas, Diego de las and Bressand, Florian and Lengyel, Gianna and Lample, Guillaume and Saulnier, Lucile and others. Mistral 7B.arXiv preprint arXiv:2310.06825, 2023
-
[31]
CEGS: Con- figuration Example Generalizing Synthesizer
Jianmin Liu and Li Chen and Dan Li and Yukai Miao. CEGS: Con- figuration Example Generalizing Synthesizer. In Proc. USENIX NSDI, 2025
2025
-
[32]
The Nature of Data Center Traffic: Measurements & Analysis
Kandula, Srikanth and Sengupta, Sudipta and Greenberg, Albert and Patel, Parveen and Chaiken, Ronnie. The Nature of Data Center Traffic: Measurements & Analysis. In Proc. ACM IMC, 2009
2009
-
[33]
Semi-Oblivious Traffic Engineering: The Road Not Taken
Praveen Kumar, Yang Yuan, Chris Yu, Nate Foster, Robert Kleinberg, Petr Lapukhov, Chiun Lin Lim, and Robert Soulé. Semi-Oblivious Traffic Engineering: The Road Not Taken. In Proc. USENIX NSDI, 2018
2018
-
[34]
A Survey on Deep Learning for Named Entity Recognition
Li, Jing and Sun, Aixin and Han, Jianglei and Li, Chenliang. A Survey on Deep Learning for Named Entity Recognition. IEEE Transactions on Knowledge and Data Engineering , 34(1):50–70, January 2020
2020
-
[35]
Halueval: A Large-Scale Hallucination Eval- uation Benchmark for Large Language Models
Li, Junyi and Cheng, Xiaoxue and Zhao, Wayne Xin and Nie, Jian- Yun and Wen, Ji-Rong. Halueval: A Large-Scale Hallucination Eval- uation Benchmark for Large Language Models. arXiv Preprint arXiv:2305.11747, 2023
2023 arXiv
-
[36]
Bond: Bert-Assisted Open-Domain Named Entity Recognition with Distant Supervision
Liang, Chen and Yu, Yue and Jiang, Haoming and Er, Siawpeng and Wang, Ruijia and Zhao, Tuo and Zhang, Chao. Bond: Bert-Assisted Open-Domain Named Entity Recognition with Distant Supervision. In Proc. ACM SIGKDD, 2020
2020
-
[37]
Automatic Detection of Vague Words and Sentences in Privacy Policies
Logan Lebanoff and Fei Liu. Automatic Detection of Vague Words and Sentences in Privacy Policies. arXiv preprint arXiv:1808.06219, 2018
2018 arXiv
-
[38]
What do LLMs Need to Synthesize Correct Router Configurations? In Proc
Mondal, Rajdeep and Tang, Alan and Beckett, Ryan and Millstein, Todd and Varghese, George. What do LLMs Need to Synthesize Correct Router Configurations? In Proc. ACM HotNets, 2023
2023
-
[39]
Practical Intent-driven Routing Configuration Synthesis
Sivaramakrishnan Ramanathan, Ying Zhang, Mohab Gawish, Yogesh Mundada, Zhaodong Wang, Sangki Yun, Eric Lippert, Walid Taha, Minlan Yu, and Jelena Mirkovic. Practical Intent-driven Routing Configuration Synthesis. In Proc. USENIX NSDI, 2023
2023
-
[40]
Prompt Programming for Large Language Models: Beyond the Few-Shot Paradigm
Reynolds, Laria and McDonell, Kyle. Prompt Programming for Large Language Models: Beyond the Few-Shot Paradigm. In Extended Ab- stracts of the 2021 CHI Conference on Human Factors in Computing Systems, 2021
2021
-
[41]
Cantor Meets Scott: Semantic Foundations for Prob- abilistic Networks
Steffen Smolka, Praveen Kumar, Nate Foster, Dexter Kozen, and Alexandra Silva. Cantor Meets Scott: Semantic Foundations for Prob- abilistic Networks. In Proceedings of ACM SIGPLAN Symposium on Principles of Programming Languages , 2017
2017
-
[42]
An Information-Theoretic Approach to Prompt Engi- neering without Ground Truth Labels
Sorensen, Taylor and Robinson, Joshua and Rytting, Christopher Michael and Shaw, Alexander Glenn and Rogers, Kyle Jeffrey and Delorey, Alexia Pauline and Khalil, Mahmoud and Fulda, Nancy and Wingate, David. An Information-Theoretic Approach to Prompt Engi- neering without Grou...
2022 arXiv
-
[43]
Probabilistic Verification of Network Configurations
Samuel Steffen, Timon Gehr, Petar Tsankov, Laurent Vanbever, and Martin Vechev. Probabilistic Verification of Network Configurations. In Proc. ACM SIGCOMM, 2020. 14
2020
-
[44]
Detecting Network Load Violations for Distributed Control Planes
Kausik Subramanian, Anubhavnidhi Abhashkumar, Loris D’Antoni, and Aditya Akella. Detecting Network Load Violations for Distributed Control Planes. In Proceedings of ACM SIGPLAN Conference on Pro- gramming Language Design and Implementation , 2020
2020
-
[45]
Robotron: Top-down Network Management at Facebook Scale
Yu-Wei Eric Sung, Xiaozheng Tie, Starsky HY Wong, and Hongyi Zeng. Robotron: Top-down Network Management at Facebook Scale. In Proc. ACM SIGCOMM, 2016
2016
-
[46]
Bingchuan Tian, Xinyi Zhang, Ennan Zhai, Hongqiang Harry Liu, Qiaobo Ye, Chunsheng Wang, Xin Wu, Zhiming Ji, Yihong Sang, Ming Zhang, Da Yu, Chen Tian, Haitao Zheng, and Ben Y. Zhao. Safely and Automatically Updating In-Network ACL Configurations with Intent Language. In Proc....
2019
-
[47]
Llama: Open and Efficient Foundation Language Models
Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie- Anne Lachaux, Timothée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and Efficient Foundation Language Models. arXiv preprint arXiv:2302.13971, 2023
2023 arXiv
-
[48]
Gomez, Lukasz Kaiser, and Illia Polosukhin
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is All you Need. In Advances in Neural Information Processing Systems , 2017
2017
-
[49]
NetConfEval: Can LLMs Facili- tate Network Configuration? Proceedings of the ACM on Networking , 2(CoNEXT2):1–25, June 2024
Changjie Wang, Mariano Scazzariello, Alireza Farshin, Simone Ferlin, Dejan Kostić, and Marco Chiesa. NetConfEval: Can LLMs Facili- tate Network Configuration? Proceedings of the ACM on Networking , 2(CoNEXT2):1–25, June 2024
2024
-
[50]
Making Network Configuration Human Friendly
Wang, Changjie and Scazzariello, Mariano and Farshin, Alireza and Kostic, Dejan and Chiesa, Marco. Making Network Configuration Human Friendly. arXiv Preprint arXiv:2309.06342, 2023
2023 arXiv
-
[51]
Chain-of-Thought Prompting Elicits Reasoning in Large Language Models
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. Chain-of-Thought Prompting Elicits Reasoning in Large Language Models. In Advances in Neural Information Processing Systems, 2022
2022
-
[52]
Step 1–5
Duo Wu, Xianda Wang, Yaqi Qiao, Zhi Wang, Junchen Jiang, Shuguang Cui, and Fangxin Wang. NetLLM: Adapting Large Language Models for Networking. In Proc. ACM SIGCOMM, 2024. 15 Appendices A Comprehension Prompts and Human Interaction Example Figure 8. The skeleton of the prompts...
2024
-
[53]
10.0.0.0/32→ 11.0.0.1/32 HTTP
and “10.0.0.0/32→ 11.0.0.1/32 HTTP” (index 3), so its index set is {1, 3}, represented as the Bitarray “1010”. Using these precomputed index sets, we can efficiently compute the flow set for a rule. First, we enumerate all specifics of an attribute and take the union of their ...
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.